mirror of https://github.com/falsovsky/ACLAFS.git
initial commit
This commit is contained in:
parent
6da3794ca6
commit
a463d18e34
|
@ -0,0 +1,22 @@
|
||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Express 2013 for Windows Desktop
|
||||||
|
VisualStudioVersion = 12.0.21005.1
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ACLAFS", "ACLAFS\ACLAFS.csproj", "{0E4D80F2-D0A6-4BBA-A747-44109D6B3FDE}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{0E4D80F2-D0A6-4BBA-A747-44109D6B3FDE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{0E4D80F2-D0A6-4BBA-A747-44109D6B3FDE}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{0E4D80F2-D0A6-4BBA-A747-44109D6B3FDE}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{0E4D80F2-D0A6-4BBA-A747-44109D6B3FDE}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
Binary file not shown.
|
@ -0,0 +1,135 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{0E4D80F2-D0A6-4BBA-A747-44109D6B3FDE}</ProjectGuid>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>ACLAFS</RootNamespace>
|
||||||
|
<AssemblyName>ACLAFS</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||||
|
<PublishUrl>c:\deploy\aclafs\</PublishUrl>
|
||||||
|
<Install>true</Install>
|
||||||
|
<InstallFrom>Disk</InstallFrom>
|
||||||
|
<UpdateEnabled>false</UpdateEnabled>
|
||||||
|
<UpdateMode>Foreground</UpdateMode>
|
||||||
|
<UpdateInterval>7</UpdateInterval>
|
||||||
|
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
||||||
|
<UpdatePeriodically>false</UpdatePeriodically>
|
||||||
|
<UpdateRequired>false</UpdateRequired>
|
||||||
|
<MapFileExtensions>true</MapFileExtensions>
|
||||||
|
<ApplicationRevision>1</ApplicationRevision>
|
||||||
|
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
||||||
|
<UseApplicationTrust>false</UseApplicationTrust>
|
||||||
|
<PublishWizardCompleted>true</PublishWizardCompleted>
|
||||||
|
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<ManifestCertificateThumbprint>58A17DAE12F5C25BADB4900F8690205AD3DB5340</ManifestCertificateThumbprint>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<ManifestKeyFile>ACLAFS_TemporaryKey.pfx</ManifestKeyFile>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<GenerateManifests>true</GenerateManifests>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<SignManifests>true</SignManifests>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Deployment" />
|
||||||
|
<Reference Include="System.Drawing" />
|
||||||
|
<Reference Include="System.Windows.Forms" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="acl.cs" />
|
||||||
|
<Compile Include="mainForm.cs">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="mainForm.Designer.cs">
|
||||||
|
<DependentUpon>mainForm.cs</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Program.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
<EmbeddedResource Include="mainForm.resx">
|
||||||
|
<DependentUpon>mainForm.cs</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Properties\Resources.resx">
|
||||||
|
<Generator>ResXFileCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<Compile Include="Properties\Resources.Designer.cs">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Resources.resx</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<None Include="ACLAFS_TemporaryKey.pfx" />
|
||||||
|
<None Include="Properties\Settings.settings">
|
||||||
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||||
|
</None>
|
||||||
|
<Compile Include="Properties\Settings.Designer.cs">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Settings.settings</DependentUpon>
|
||||||
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
|
</Compile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="App.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<BootstrapperPackage Include=".NETFramework,Version=v4.5">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
|
||||||
|
<Install>true</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
||||||
|
<Install>false</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
||||||
|
<Install>false</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
</Project>
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<PublishUrlHistory />
|
||||||
|
<InstallUrlHistory />
|
||||||
|
<SupportUrlHistory />
|
||||||
|
<UpdateUrlHistory />
|
||||||
|
<BootstrapperUrlHistory />
|
||||||
|
<ErrorReportUrlHistory />
|
||||||
|
<FallbackCulture>en-US</FallbackCulture>
|
||||||
|
<VerifyUploadedFiles>false</VerifyUploadedFiles>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
Binary file not shown.
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
|
@ -0,0 +1,22 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace ACLAFS
|
||||||
|
{
|
||||||
|
static class Program
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The main entry point for the application.
|
||||||
|
/// </summary>
|
||||||
|
[STAThread]
|
||||||
|
static void Main()
|
||||||
|
{
|
||||||
|
Application.EnableVisualStyles();
|
||||||
|
Application.SetCompatibleTextRenderingDefault(false);
|
||||||
|
Application.Run(new mainForm());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
using System.Reflection;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
// General Information about an assembly is controlled through the following
|
||||||
|
// set of attributes. Change these attribute values to modify the information
|
||||||
|
// associated with an assembly.
|
||||||
|
[assembly: AssemblyTitle("ACLAFS")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("ACLAFS")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2014")]
|
||||||
|
[assembly: AssemblyTrademark("")]
|
||||||
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
// Setting ComVisible to false makes the types in this assembly not visible
|
||||||
|
// to COM components. If you need to access a type in this assembly from
|
||||||
|
// COM, set the ComVisible attribute to true on that type.
|
||||||
|
[assembly: ComVisible(false)]
|
||||||
|
|
||||||
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
|
[assembly: Guid("bd61559a-04bd-4fbf-9aa3-5ab681193867")]
|
||||||
|
|
||||||
|
// Version information for an assembly consists of the following four values:
|
||||||
|
//
|
||||||
|
// Major Version
|
||||||
|
// Minor Version
|
||||||
|
// Build Number
|
||||||
|
// Revision
|
||||||
|
//
|
||||||
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
|
// by using the '*' as shown below:
|
||||||
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
|
[assembly: AssemblyVersion("1.0.0.0")]
|
||||||
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|
@ -0,0 +1,71 @@
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.18444
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
namespace ACLAFS.Properties
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
|
/// </summary>
|
||||||
|
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||||
|
// class via a tool like ResGen or Visual Studio.
|
||||||
|
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||||
|
// with the /str option, or rebuild your VS project.
|
||||||
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
|
internal class Resources
|
||||||
|
{
|
||||||
|
|
||||||
|
private static global::System.Resources.ResourceManager resourceMan;
|
||||||
|
|
||||||
|
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||||
|
|
||||||
|
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||||
|
internal Resources()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the cached ResourceManager instance used by this class.
|
||||||
|
/// </summary>
|
||||||
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
|
internal static global::System.Resources.ResourceManager ResourceManager
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if ((resourceMan == null))
|
||||||
|
{
|
||||||
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ACLAFS.Properties.Resources", typeof(Resources).Assembly);
|
||||||
|
resourceMan = temp;
|
||||||
|
}
|
||||||
|
return resourceMan;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Overrides the current thread's CurrentUICulture property for all
|
||||||
|
/// resource lookups using this strongly typed resource class.
|
||||||
|
/// </summary>
|
||||||
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
|
internal static global::System.Globalization.CultureInfo Culture
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return resourceCulture;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
resourceCulture = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,117 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
|
@ -0,0 +1,30 @@
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.18444
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
namespace ACLAFS.Properties
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
|
||||||
|
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
|
||||||
|
{
|
||||||
|
|
||||||
|
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||||
|
|
||||||
|
public static Settings Default
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return defaultInstance;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
|
||||||
|
<Profiles>
|
||||||
|
<Profile Name="(Default)" />
|
||||||
|
</Profiles>
|
||||||
|
<Settings />
|
||||||
|
</SettingsFile>
|
|
@ -0,0 +1,167 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace ACLAFS
|
||||||
|
{
|
||||||
|
class acl
|
||||||
|
{
|
||||||
|
public Dictionary<string, int> acls = new Dictionary<string, int>();
|
||||||
|
public String identifier = "";
|
||||||
|
public String directory = "";
|
||||||
|
public List<String> directories;
|
||||||
|
|
||||||
|
public acl()
|
||||||
|
{
|
||||||
|
this.acls.Add("r", 0);
|
||||||
|
this.acls.Add("l", 0);
|
||||||
|
this.acls.Add("i", 0);
|
||||||
|
this.acls.Add("d", 0);
|
||||||
|
this.acls.Add("w", 0);
|
||||||
|
this.acls.Add("k", 0);
|
||||||
|
this.acls.Add("a", 0);
|
||||||
|
|
||||||
|
this.directories = new List<String>();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void ParseFSOutput() {
|
||||||
|
Process p = new Process();
|
||||||
|
p.StartInfo.UseShellExecute = false;
|
||||||
|
p.StartInfo.RedirectStandardOutput = true;
|
||||||
|
p.StartInfo.FileName = "fs.exe";
|
||||||
|
p.StartInfo.Arguments = @"listacl " + this.directory;
|
||||||
|
p.Start();
|
||||||
|
|
||||||
|
string output = p.StandardOutput.ReadToEnd();
|
||||||
|
p.WaitForExit();
|
||||||
|
|
||||||
|
this.acls["r"] = 0;
|
||||||
|
this.acls["l"] = 0;
|
||||||
|
this.acls["i"] = 0;
|
||||||
|
this.acls["d"] = 0;
|
||||||
|
this.acls["w"] = 0;
|
||||||
|
this.acls["k"] = 0;
|
||||||
|
this.acls["a"] = 0;
|
||||||
|
|
||||||
|
// Partir o output por varias linhas
|
||||||
|
var lines = output.Split(new string[] { Environment.NewLine }, StringSplitOptions.None);
|
||||||
|
foreach (string s in lines)
|
||||||
|
{
|
||||||
|
// Achei ACL para este identificador
|
||||||
|
if (s.Trim().StartsWith(this.identifier)) {
|
||||||
|
String r = s.Trim().Substring(this.identifier.Length);
|
||||||
|
|
||||||
|
//Parsar as acls
|
||||||
|
if (r.IndexOf("r") != -1) { this.acls["r"] = 1; } else { this.acls["r"] = 0; }
|
||||||
|
if (r.IndexOf("l") != -1) { this.acls["l"] = 1; } else { this.acls["l"] = 0; }
|
||||||
|
if (r.IndexOf("i") != -1) { this.acls["i"] = 1; } else { this.acls["i"] = 0; }
|
||||||
|
if (r.IndexOf("d") != -1) { this.acls["d"] = 1; } else { this.acls["d"] = 0; }
|
||||||
|
if (r.IndexOf("w") != -1) { this.acls["w"] = 1; } else { this.acls["w"] = 0; }
|
||||||
|
if (r.IndexOf("k") != -1) { this.acls["k"] = 1; } else { this.acls["k"] = 0; }
|
||||||
|
if (r.IndexOf("a") != -1) { this.acls["a"] = 1; } else { this.acls["a"] = 0; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void ApplyAcl(String acl, Boolean recursive = false)
|
||||||
|
{
|
||||||
|
if (recursive == true)
|
||||||
|
{
|
||||||
|
this.directories.Clear();
|
||||||
|
getRecursiveDirectories(this.directory);
|
||||||
|
foreach (String s in this.directories)
|
||||||
|
{
|
||||||
|
Process p = new Process();
|
||||||
|
p.StartInfo.UseShellExecute = false;
|
||||||
|
p.StartInfo.RedirectStandardOutput = true;
|
||||||
|
p.StartInfo.RedirectStandardError = true;
|
||||||
|
p.StartInfo.FileName = "fs.exe";
|
||||||
|
p.StartInfo.Arguments = @"setacl -dir " + s + " -acl " + this.identifier + " " + acl;
|
||||||
|
p.Start();
|
||||||
|
string output = p.StandardError.ReadToEnd();
|
||||||
|
p.WaitForExit();
|
||||||
|
|
||||||
|
if (p.ExitCode != 0)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Erro a Aplicar ACL " + acl + ", identificador: " + this.identifier + ", directoria: " + s + "\n\n" + output);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Process p = new Process();
|
||||||
|
p.StartInfo.UseShellExecute = false;
|
||||||
|
p.StartInfo.RedirectStandardOutput = true;
|
||||||
|
p.StartInfo.RedirectStandardError = true;
|
||||||
|
p.StartInfo.FileName = "fs.exe";
|
||||||
|
p.StartInfo.Arguments = @"setacl -dir " + this.directory + " -acl " + this.identifier + " " + acl;
|
||||||
|
p.Start();
|
||||||
|
string output = p.StandardError.ReadToEnd();
|
||||||
|
p.WaitForExit();
|
||||||
|
|
||||||
|
if (p.ExitCode != 0)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Erro a Aplicar ACL " + acl + ", identificador: " + this.identifier + ", directoria: " + this.directory + "\n\n" + output);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void getRecursiveDirectories(String dir)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
this.directories.Add(dir);
|
||||||
|
|
||||||
|
foreach (string d in Directory.GetDirectories(dir))
|
||||||
|
{
|
||||||
|
getRecursiveDirectories(d);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
catch (System.Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine(ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void ChooseDirectory()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (FolderBrowserDialog dialog = new FolderBrowserDialog())
|
||||||
|
{
|
||||||
|
//dialog.Description = "Open a folder which contains the xml output";
|
||||||
|
dialog.ShowNewFolderButton = false;
|
||||||
|
//dialog.RootFolder = Environment.SpecialFolder.MyComputer;
|
||||||
|
|
||||||
|
//MessageBox.Show(this.directory);
|
||||||
|
|
||||||
|
if (this.directory != "")
|
||||||
|
{
|
||||||
|
dialog.SelectedPath = this.directory;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dialog.SelectedPath = @"Y:\user\p\pe\pedro.oliveira\public\zbr2";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dialog.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
this.directory = dialog.SelectedPath;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception exc)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Import failed because " + exc.Message + " , please try again later.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<assemblyIdentity name="ACLAFS.application" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<description asmv2:publisher="ACLAFS" asmv2:product="ACLAFS" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<deployment install="true" mapFileExtensions="true" />
|
||||||
|
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<framework targetVersion="4.5" profile="Full" supportedRuntime="4.0.30319" />
|
||||||
|
</compatibleFrameworks>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" codebase="ACLAFS.exe.manifest" size="3446">
|
||||||
|
<assemblyIdentity name="ACLAFS.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||||
|
<dsig:DigestValue>EL11mHhKdgakMzZy8vOa1PBzOZIkgAzYLg+VNr7Pa3g=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
</asmv1:assembly>
|
Binary file not shown.
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<asmv1:assemblyIdentity name="ACLAFS.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
|
||||||
|
<application />
|
||||||
|
<entryPoint>
|
||||||
|
<assemblyIdentity name="ACLAFS" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
|
||||||
|
<commandLine file="ACLAFS.exe" parameters="" />
|
||||||
|
</entryPoint>
|
||||||
|
<trustInfo>
|
||||||
|
<security>
|
||||||
|
<applicationRequestMinimum>
|
||||||
|
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
|
||||||
|
<defaultAssemblyRequest permissionSetReference="Custom" />
|
||||||
|
</applicationRequestMinimum>
|
||||||
|
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<!--
|
||||||
|
UAC Manifest Options
|
||||||
|
If you want to change the Windows User Account Control level replace the
|
||||||
|
requestedExecutionLevel node with one of the following.
|
||||||
|
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||||
|
|
||||||
|
If you want to utilize File and Registry Virtualization for backward
|
||||||
|
compatibility then delete the requestedExecutionLevel node.
|
||||||
|
-->
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
<dependency>
|
||||||
|
<dependentOS>
|
||||||
|
<osVersionInfo>
|
||||||
|
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
|
||||||
|
</osVersionInfo>
|
||||||
|
</dependentOS>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
|
||||||
|
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ACLAFS.exe" size="84480">
|
||||||
|
<assemblyIdentity name="ACLAFS" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||||
|
<dsig:DigestValue>+7f6tNxInP4jLUmAqC66gc5ETvoxxx+4w+jd7L2TZqY=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<file name="ACLAFS.exe.config" size="187">
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||||
|
<dsig:DigestValue>xm4bo26HQ0LNVwz1vdPYtzhkpMnp2AI5i+f0b+OahTI=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</file>
|
||||||
|
</asmv1:assembly>
|
Binary file not shown.
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<assemblyIdentity name="ACLAFS.application" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<description asmv2:publisher="ACLAFS" asmv2:product="ACLAFS" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<deployment install="true" mapFileExtensions="true" />
|
||||||
|
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<framework targetVersion="4.5" profile="Full" supportedRuntime="4.0.30319" />
|
||||||
|
</compatibleFrameworks>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" codebase="ACLAFS.exe.manifest" size="3446">
|
||||||
|
<assemblyIdentity name="ACLAFS.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||||
|
<dsig:DigestValue>EL11mHhKdgakMzZy8vOa1PBzOZIkgAzYLg+VNr7Pa3g=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
</asmv1:assembly>
|
Binary file not shown.
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<asmv1:assemblyIdentity name="ACLAFS.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
|
||||||
|
<application />
|
||||||
|
<entryPoint>
|
||||||
|
<assemblyIdentity name="ACLAFS" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
|
||||||
|
<commandLine file="ACLAFS.exe" parameters="" />
|
||||||
|
</entryPoint>
|
||||||
|
<trustInfo>
|
||||||
|
<security>
|
||||||
|
<applicationRequestMinimum>
|
||||||
|
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
|
||||||
|
<defaultAssemblyRequest permissionSetReference="Custom" />
|
||||||
|
</applicationRequestMinimum>
|
||||||
|
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<!--
|
||||||
|
UAC Manifest Options
|
||||||
|
If you want to change the Windows User Account Control level replace the
|
||||||
|
requestedExecutionLevel node with one of the following.
|
||||||
|
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||||
|
|
||||||
|
If you want to utilize File and Registry Virtualization for backward
|
||||||
|
compatibility then delete the requestedExecutionLevel node.
|
||||||
|
-->
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
<dependency>
|
||||||
|
<dependentOS>
|
||||||
|
<osVersionInfo>
|
||||||
|
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
|
||||||
|
</osVersionInfo>
|
||||||
|
</dependentOS>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
|
||||||
|
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ACLAFS.exe" size="84480">
|
||||||
|
<assemblyIdentity name="ACLAFS" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||||
|
<dsig:DigestValue>+7f6tNxInP4jLUmAqC66gc5ETvoxxx+4w+jd7L2TZqY=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<file name="ACLAFS.exe.config" size="187">
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||||
|
<dsig:DigestValue>xm4bo26HQ0LNVwz1vdPYtzhkpMnp2AI5i+f0b+OahTI=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</file>
|
||||||
|
</asmv1:assembly>
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<assemblyIdentity name="ACLAFS.application" version="1.0.0.0" publicKeyToken="ec19247cadaf3f43" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<description asmv2:publisher="ACLAFS" asmv2:product="ACLAFS" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<deployment install="true" mapFileExtensions="true" />
|
||||||
|
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<framework targetVersion="4.5" profile="Full" supportedRuntime="4.0.30319" />
|
||||||
|
</compatibleFrameworks>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" codebase="Application Files\ACLAFS_1_0_0_0\ACLAFS.exe.manifest" size="7162">
|
||||||
|
<assemblyIdentity name="ACLAFS.exe" version="1.0.0.0" publicKeyToken="ec19247cadaf3f43" language="neutral" processorArchitecture="msil" type="win32" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||||
|
<dsig:DigestValue>ZdisenCoJfysmXGLytmhvxSfAI44TXXCaKD+7N0mGOg=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<publisherIdentity name="CN=FCT-PC0109\Pedro" issuerKeyHash="5b84918f8a0ee8aaee7b13334890daa986849454" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>wiRq0Yexqmwl1erjgSIspwE+G1BbdDfOY427Zd5+1U4=</DigestValue></Reference></SignedInfo><SignatureValue>WLuMkxAY5OyYw8gXH2yjeOC4HXfPFuaCoXKnS35AyoSdX6ECDnGTNpnQ+i0gYblFMm2x2o9znSEbMyHjSdIPFtDAZup2fuXFbcPp4mQvoSu12pnp3ofvIwnj+1SvVD0FCA0uorx2s4Pz4AxlW90n8ha76n0uyIrRg1nnhe3JikA=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>sZ6668KPW3S03+UdPCiXzzA/lcQNrCgS56izKNy5FwI/nY5BNDhEfFUHGndFDjK4YwPQB/gWgz/VWWGkXt6tarwTLf6PXaJxwVnJ29QzXa5xPcoq7TTHuHMvK5p0OsHb+TrZBitNXmiwoEm3NuUH1gU9I8ZEUS8XrNihN0b0IPc=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="4ed57ede65bb8d63ce37745b501b3e01a72c2281e3ead5256caab187d16a24c2" Description="" Url=""><as:assemblyIdentity name="ACLAFS.application" version="1.0.0.0" publicKeyToken="ec19247cadaf3f43" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=FCT-PC0109\Pedro</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>BUhhhjN17M8YRJAlL6nU69xD+gmhRouxZMhYywTeifE=</DigestValue></Reference></SignedInfo><SignatureValue>KQnqJhfYbH1qRRl5AmA879UbgKUVvnCH0+GbDujvo21U9LNZk5VDKP6+mFJjQGuq6HPI32XdWLDKnGLecvLmG6mAuFjTbbLnAUbrqBloACiJ6PtPJ1neCqAdy87uQSlLSUP/QpzzsHWWrcMcSr+W23xHHSa7KmIEIPAm6f7HzBc=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>sZ6668KPW3S03+UdPCiXzzA/lcQNrCgS56izKNy5FwI/nY5BNDhEfFUHGndFDjK4YwPQB/gWgz/VWWGkXt6tarwTLf6PXaJxwVnJ29QzXa5xPcoq7TTHuHMvK5p0OsHb+TrZBitNXmiwoEm3NuUH1gU9I8ZEUS8XrNihN0b0IPc=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQUnSRGsV4HIpLYgzl0ZixaTANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARgBDAFQALQBQAEMAMAAxADAAOQBcAFAAZQBkAHIAbzAeFw0xNDA0MjgxNzAxMDBaFw0xNTA0MjgyMzAxMDBaMCsxKTAnBgNVBAMeIABGAEMAVAAtAFAAQwAwADEAMAA5AFwAUABlAGQAcgBvMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCxnrrrwo9bdLTf5R08KJfPMD+VxA2sKBLnqLMo3LkXAj+djkE0OER8VQcad0UOMrhjA9AH+BaDP9VZYaRe3q1qvBMt/o9donHBWcnb1DNdrnE9yirtNMe4cy8rmnQ6wdv5OtkGK01eaLCgSbc25QfWBT0jxkRRLxes2KE3RvQg9wIDAQABMA0GCSqGSIb3DQEBCwUAA4GBADUxX168pZsVV71Hs4eBqb48TE9YuUlfxAcaxC6qrUAyt84D6DI27LjTSsKlLYo+7RO6hE3bgTMF56Sg70+dEKLcciBD+AIczb61xKpbqHv5Yn+N2YGTqjS3+8OWBMGcHmEXieBqpKbW2tCT6Qvpn2hGlvOoudRqTN8oKPKmxCP8</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
Binary file not shown.
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<asmv1:assemblyIdentity name="ACLAFS.exe" version="1.0.0.0" publicKeyToken="ec19247cadaf3f43" language="neutral" processorArchitecture="msil" type="win32" />
|
||||||
|
<application />
|
||||||
|
<entryPoint>
|
||||||
|
<assemblyIdentity name="ACLAFS" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
|
||||||
|
<commandLine file="ACLAFS.exe" parameters="" />
|
||||||
|
</entryPoint>
|
||||||
|
<trustInfo>
|
||||||
|
<security>
|
||||||
|
<applicationRequestMinimum>
|
||||||
|
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
|
||||||
|
<defaultAssemblyRequest permissionSetReference="Custom" />
|
||||||
|
</applicationRequestMinimum>
|
||||||
|
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<!--
|
||||||
|
UAC Manifest Options
|
||||||
|
If you want to change the Windows User Account Control level replace the
|
||||||
|
requestedExecutionLevel node with one of the following.
|
||||||
|
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||||
|
|
||||||
|
If you want to utilize File and Registry Virtualization for backward
|
||||||
|
compatibility then delete the requestedExecutionLevel node.
|
||||||
|
-->
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
<dependency>
|
||||||
|
<dependentOS>
|
||||||
|
<osVersionInfo>
|
||||||
|
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
|
||||||
|
</osVersionInfo>
|
||||||
|
</dependentOS>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
|
||||||
|
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ACLAFS.exe" size="84480">
|
||||||
|
<assemblyIdentity name="ACLAFS" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||||
|
<dsig:DigestValue>+7f6tNxInP4jLUmAqC66gc5ETvoxxx+4w+jd7L2TZqY=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<file name="ACLAFS.exe.config" size="187">
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||||
|
<dsig:DigestValue>xm4bo26HQ0LNVwz1vdPYtzhkpMnp2AI5i+f0b+OahTI=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</file>
|
||||||
|
<publisherIdentity name="CN=FCT-PC0109\Pedro" issuerKeyHash="5b84918f8a0ee8aaee7b13334890daa986849454" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>jE6q/cC2yMuwCTZNd6tyWjqyKMY9xyxKqeBwNKwynpM=</DigestValue></Reference></SignedInfo><SignatureValue>oWNWhrRUX1E55tR/rOZBf6j6vzX15emWsxvBpZ/ZPJIn7bKWS10Lcc0TBPEIpiSZYvTrgZ+UUnUXKpV36Eis/vyL4tokj5RtL0APH+PvWvk6WX6vEp8xpccZviddRYAbINDZ8Zp/S5SGZnMBVMS48NzJmFvEbz4riHEakvPlt0A=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>sZ6668KPW3S03+UdPCiXzzA/lcQNrCgS56izKNy5FwI/nY5BNDhEfFUHGndFDjK4YwPQB/gWgz/VWWGkXt6tarwTLf6PXaJxwVnJ29QzXa5xPcoq7TTHuHMvK5p0OsHb+TrZBitNXmiwoEm3NuUH1gU9I8ZEUS8XrNihN0b0IPc=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="939e32ac3470e0a94a2cc73dc628b23a5a72ab774d3609b0cbc8b6c0fdaa4e8c" Description="" Url=""><as:assemblyIdentity name="ACLAFS.exe" version="1.0.0.0" publicKeyToken="ec19247cadaf3f43" language="neutral" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=FCT-PC0109\Pedro</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>AZsX+/A08a7VKEhJ3dx5shd3NfeLMJKu7m5WPwo7YRs=</DigestValue></Reference></SignedInfo><SignatureValue>AiRt12qk3RCFe5qQ8Gef6vPdTZ1FN/mscIOPo6IdDwnVGvFBztqsvY9HM+6orXq57cBNh+MMTOGdBzrlNRpHzPYz3kbKwZAH0ib/nikk+m5VGQZ0O7gEB6cqeMhdLTyqn0ifFEF83Qi1iuxibWkTibRHDmrE0Fp/dCz03avmyQQ=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>sZ6668KPW3S03+UdPCiXzzA/lcQNrCgS56izKNy5FwI/nY5BNDhEfFUHGndFDjK4YwPQB/gWgz/VWWGkXt6tarwTLf6PXaJxwVnJ29QzXa5xPcoq7TTHuHMvK5p0OsHb+TrZBitNXmiwoEm3NuUH1gU9I8ZEUS8XrNihN0b0IPc=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB2TCCAUKgAwIBAgIQUnSRGsV4HIpLYgzl0ZixaTANBgkqhkiG9w0BAQsFADArMSkwJwYDVQQDHiAARgBDAFQALQBQAEMAMAAxADAAOQBcAFAAZQBkAHIAbzAeFw0xNDA0MjgxNzAxMDBaFw0xNTA0MjgyMzAxMDBaMCsxKTAnBgNVBAMeIABGAEMAVAAtAFAAQwAwADEAMAA5AFwAUABlAGQAcgBvMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCxnrrrwo9bdLTf5R08KJfPMD+VxA2sKBLnqLMo3LkXAj+djkE0OER8VQcad0UOMrhjA9AH+BaDP9VZYaRe3q1qvBMt/o9donHBWcnb1DNdrnE9yirtNMe4cy8rmnQ6wdv5OtkGK01eaLCgSbc25QfWBT0jxkRRLxes2KE3RvQg9wIDAQABMA0GCSqGSIb3DQEBCwUAA4GBADUxX168pZsVV71Hs4eBqb48TE9YuUlfxAcaxC6qrUAyt84D6DI27LjTSsKlLYo+7RO6hE3bgTMF56Sg70+dEKLcciBD+AIczb61xKpbqHv5Yn+N2YGTqjS3+8OWBMGcHmEXieBqpKbW2tCT6Qvpn2hGlvOoudRqTN8oKPKmxCP8</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
|
Binary file not shown.
|
@ -0,0 +1,242 @@
|
||||||
|
namespace ACLAFS
|
||||||
|
{
|
||||||
|
partial class mainForm
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Windows Form Designer generated code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
private void InitializeComponent()
|
||||||
|
{
|
||||||
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(mainForm));
|
||||||
|
this.directoriaTxt = new System.Windows.Forms.TextBox();
|
||||||
|
this.procurarBtn = new System.Windows.Forms.Button();
|
||||||
|
this.identificadorLbl = new System.Windows.Forms.Label();
|
||||||
|
this.identificadorTxt = new System.Windows.Forms.TextBox();
|
||||||
|
this.aclGrp = new System.Windows.Forms.GroupBox();
|
||||||
|
this.administerChkBox = new System.Windows.Forms.CheckBox();
|
||||||
|
this.lockChkBox = new System.Windows.Forms.CheckBox();
|
||||||
|
this.writeChkBox = new System.Windows.Forms.CheckBox();
|
||||||
|
this.deleteChkBox = new System.Windows.Forms.CheckBox();
|
||||||
|
this.insertChkBox = new System.Windows.Forms.CheckBox();
|
||||||
|
this.lookupChkBox = new System.Windows.Forms.CheckBox();
|
||||||
|
this.readChkBox = new System.Windows.Forms.CheckBox();
|
||||||
|
this.applyBtn = new System.Windows.Forms.Button();
|
||||||
|
this.recursiveChkBox = new System.Windows.Forms.CheckBox();
|
||||||
|
this.aclGrp.SuspendLayout();
|
||||||
|
this.SuspendLayout();
|
||||||
|
//
|
||||||
|
// directoriaTxt
|
||||||
|
//
|
||||||
|
this.directoriaTxt.Location = new System.Drawing.Point(12, 35);
|
||||||
|
this.directoriaTxt.Name = "directoriaTxt";
|
||||||
|
this.directoriaTxt.ReadOnly = true;
|
||||||
|
this.directoriaTxt.Size = new System.Drawing.Size(188, 20);
|
||||||
|
this.directoriaTxt.TabIndex = 0;
|
||||||
|
this.directoriaTxt.TabStop = false;
|
||||||
|
//
|
||||||
|
// procurarBtn
|
||||||
|
//
|
||||||
|
this.procurarBtn.Cursor = System.Windows.Forms.Cursors.Arrow;
|
||||||
|
this.procurarBtn.Enabled = false;
|
||||||
|
this.procurarBtn.Location = new System.Drawing.Point(206, 35);
|
||||||
|
this.procurarBtn.Name = "procurarBtn";
|
||||||
|
this.procurarBtn.Size = new System.Drawing.Size(75, 23);
|
||||||
|
this.procurarBtn.TabIndex = 2;
|
||||||
|
this.procurarBtn.Text = "Browse...";
|
||||||
|
this.procurarBtn.UseVisualStyleBackColor = true;
|
||||||
|
this.procurarBtn.Click += new System.EventHandler(this.procurarBtn_Click);
|
||||||
|
//
|
||||||
|
// identificadorLbl
|
||||||
|
//
|
||||||
|
this.identificadorLbl.AutoSize = true;
|
||||||
|
this.identificadorLbl.Location = new System.Drawing.Point(13, 9);
|
||||||
|
this.identificadorLbl.Name = "identificadorLbl";
|
||||||
|
this.identificadorLbl.Size = new System.Drawing.Size(50, 13);
|
||||||
|
this.identificadorLbl.TabIndex = 2;
|
||||||
|
this.identificadorLbl.Text = "Identifier:";
|
||||||
|
//
|
||||||
|
// identificadorTxt
|
||||||
|
//
|
||||||
|
this.identificadorTxt.Location = new System.Drawing.Point(87, 9);
|
||||||
|
this.identificadorTxt.Name = "identificadorTxt";
|
||||||
|
this.identificadorTxt.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
||||||
|
this.identificadorTxt.Size = new System.Drawing.Size(194, 20);
|
||||||
|
this.identificadorTxt.TabIndex = 1;
|
||||||
|
this.identificadorTxt.Text = "pedro.oliveira";
|
||||||
|
this.identificadorTxt.WordWrap = false;
|
||||||
|
this.identificadorTxt.TextChanged += new System.EventHandler(this.identificadorTxt_TextChanged);
|
||||||
|
//
|
||||||
|
// aclGrp
|
||||||
|
//
|
||||||
|
this.aclGrp.Controls.Add(this.administerChkBox);
|
||||||
|
this.aclGrp.Controls.Add(this.lockChkBox);
|
||||||
|
this.aclGrp.Controls.Add(this.writeChkBox);
|
||||||
|
this.aclGrp.Controls.Add(this.deleteChkBox);
|
||||||
|
this.aclGrp.Controls.Add(this.insertChkBox);
|
||||||
|
this.aclGrp.Controls.Add(this.lookupChkBox);
|
||||||
|
this.aclGrp.Controls.Add(this.readChkBox);
|
||||||
|
this.aclGrp.Enabled = false;
|
||||||
|
this.aclGrp.Location = new System.Drawing.Point(16, 64);
|
||||||
|
this.aclGrp.Name = "aclGrp";
|
||||||
|
this.aclGrp.Size = new System.Drawing.Size(266, 120);
|
||||||
|
this.aclGrp.TabIndex = 4;
|
||||||
|
this.aclGrp.TabStop = false;
|
||||||
|
this.aclGrp.Text = "ACLs";
|
||||||
|
//
|
||||||
|
// administerChkBox
|
||||||
|
//
|
||||||
|
this.administerChkBox.AutoSize = true;
|
||||||
|
this.administerChkBox.Location = new System.Drawing.Point(172, 65);
|
||||||
|
this.administerChkBox.Name = "administerChkBox";
|
||||||
|
this.administerChkBox.Size = new System.Drawing.Size(88, 17);
|
||||||
|
this.administerChkBox.TabIndex = 6;
|
||||||
|
this.administerChkBox.Text = "a - administer";
|
||||||
|
this.administerChkBox.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// lockChkBox
|
||||||
|
//
|
||||||
|
this.lockChkBox.AutoSize = true;
|
||||||
|
this.lockChkBox.Location = new System.Drawing.Point(172, 42);
|
||||||
|
this.lockChkBox.Name = "lockChkBox";
|
||||||
|
this.lockChkBox.Size = new System.Drawing.Size(61, 17);
|
||||||
|
this.lockChkBox.TabIndex = 5;
|
||||||
|
this.lockChkBox.Text = "k - lock";
|
||||||
|
this.lockChkBox.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// writeChkBox
|
||||||
|
//
|
||||||
|
this.writeChkBox.AutoSize = true;
|
||||||
|
this.writeChkBox.Location = new System.Drawing.Point(172, 19);
|
||||||
|
this.writeChkBox.Name = "writeChkBox";
|
||||||
|
this.writeChkBox.Size = new System.Drawing.Size(65, 17);
|
||||||
|
this.writeChkBox.TabIndex = 4;
|
||||||
|
this.writeChkBox.Text = "w - write";
|
||||||
|
this.writeChkBox.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// deleteChkBox
|
||||||
|
//
|
||||||
|
this.deleteChkBox.AutoSize = true;
|
||||||
|
this.deleteChkBox.Location = new System.Drawing.Point(6, 91);
|
||||||
|
this.deleteChkBox.Name = "deleteChkBox";
|
||||||
|
this.deleteChkBox.Size = new System.Drawing.Size(70, 17);
|
||||||
|
this.deleteChkBox.TabIndex = 3;
|
||||||
|
this.deleteChkBox.Text = "d - delete";
|
||||||
|
this.deleteChkBox.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// insertChkBox
|
||||||
|
//
|
||||||
|
this.insertChkBox.AutoSize = true;
|
||||||
|
this.insertChkBox.Location = new System.Drawing.Point(6, 67);
|
||||||
|
this.insertChkBox.Name = "insertChkBox";
|
||||||
|
this.insertChkBox.Size = new System.Drawing.Size(62, 17);
|
||||||
|
this.insertChkBox.TabIndex = 2;
|
||||||
|
this.insertChkBox.Text = "i - insert";
|
||||||
|
this.insertChkBox.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// lookupChkBox
|
||||||
|
//
|
||||||
|
this.lookupChkBox.AutoSize = true;
|
||||||
|
this.lookupChkBox.Location = new System.Drawing.Point(6, 43);
|
||||||
|
this.lookupChkBox.Name = "lookupChkBox";
|
||||||
|
this.lookupChkBox.Size = new System.Drawing.Size(69, 17);
|
||||||
|
this.lookupChkBox.TabIndex = 1;
|
||||||
|
this.lookupChkBox.Text = "l - lookup";
|
||||||
|
this.lookupChkBox.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// readChkBox
|
||||||
|
//
|
||||||
|
this.readChkBox.AutoSize = true;
|
||||||
|
this.readChkBox.Location = new System.Drawing.Point(6, 19);
|
||||||
|
this.readChkBox.Name = "readChkBox";
|
||||||
|
this.readChkBox.Size = new System.Drawing.Size(59, 17);
|
||||||
|
this.readChkBox.TabIndex = 0;
|
||||||
|
this.readChkBox.Text = "r - read";
|
||||||
|
this.readChkBox.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// applyBtn
|
||||||
|
//
|
||||||
|
this.applyBtn.Enabled = false;
|
||||||
|
this.applyBtn.Location = new System.Drawing.Point(205, 191);
|
||||||
|
this.applyBtn.Name = "applyBtn";
|
||||||
|
this.applyBtn.Size = new System.Drawing.Size(75, 23);
|
||||||
|
this.applyBtn.TabIndex = 5;
|
||||||
|
this.applyBtn.Text = "Apply";
|
||||||
|
this.applyBtn.UseVisualStyleBackColor = true;
|
||||||
|
this.applyBtn.Click += new System.EventHandler(this.applyBtn_Click);
|
||||||
|
//
|
||||||
|
// recursiveChkBox
|
||||||
|
//
|
||||||
|
this.recursiveChkBox.AutoSize = true;
|
||||||
|
this.recursiveChkBox.Enabled = false;
|
||||||
|
this.recursiveChkBox.Location = new System.Drawing.Point(119, 193);
|
||||||
|
this.recursiveChkBox.Name = "recursiveChkBox";
|
||||||
|
this.recursiveChkBox.Size = new System.Drawing.Size(69, 17);
|
||||||
|
this.recursiveChkBox.TabIndex = 6;
|
||||||
|
this.recursiveChkBox.Text = "recursive";
|
||||||
|
this.recursiveChkBox.UseVisualStyleBackColor = true;
|
||||||
|
//
|
||||||
|
// mainForm
|
||||||
|
//
|
||||||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
|
this.ClientSize = new System.Drawing.Size(294, 222);
|
||||||
|
this.Controls.Add(this.recursiveChkBox);
|
||||||
|
this.Controls.Add(this.applyBtn);
|
||||||
|
this.Controls.Add(this.aclGrp);
|
||||||
|
this.Controls.Add(this.identificadorTxt);
|
||||||
|
this.Controls.Add(this.identificadorLbl);
|
||||||
|
this.Controls.Add(this.procurarBtn);
|
||||||
|
this.Controls.Add(this.directoriaTxt);
|
||||||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
||||||
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||||
|
this.MaximizeBox = false;
|
||||||
|
this.Name = "mainForm";
|
||||||
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
||||||
|
this.Text = "ACL AFS";
|
||||||
|
this.aclGrp.ResumeLayout(false);
|
||||||
|
this.aclGrp.PerformLayout();
|
||||||
|
this.ResumeLayout(false);
|
||||||
|
this.PerformLayout();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private System.Windows.Forms.TextBox directoriaTxt;
|
||||||
|
private System.Windows.Forms.Button procurarBtn;
|
||||||
|
private System.Windows.Forms.Label identificadorLbl;
|
||||||
|
private System.Windows.Forms.TextBox identificadorTxt;
|
||||||
|
private System.Windows.Forms.GroupBox aclGrp;
|
||||||
|
public System.Windows.Forms.CheckBox insertChkBox;
|
||||||
|
public System.Windows.Forms.CheckBox lookupChkBox;
|
||||||
|
public System.Windows.Forms.CheckBox readChkBox;
|
||||||
|
public System.Windows.Forms.CheckBox administerChkBox;
|
||||||
|
public System.Windows.Forms.CheckBox lockChkBox;
|
||||||
|
public System.Windows.Forms.CheckBox writeChkBox;
|
||||||
|
public System.Windows.Forms.CheckBox deleteChkBox;
|
||||||
|
private System.Windows.Forms.Button applyBtn;
|
||||||
|
private System.Windows.Forms.CheckBox recursiveChkBox;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,94 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Data;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace ACLAFS
|
||||||
|
{
|
||||||
|
public partial class mainForm : Form
|
||||||
|
{
|
||||||
|
acl a;
|
||||||
|
|
||||||
|
public mainForm()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
|
||||||
|
if (identificadorTxt.Text.Length > 0)
|
||||||
|
{
|
||||||
|
procurarBtn.Enabled = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
a = new acl();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void procurarBtn_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
aclGrp.Enabled = false;
|
||||||
|
a.identifier = identificadorTxt.Text;
|
||||||
|
a.ChooseDirectory();
|
||||||
|
directoriaTxt.Text = a.directory;
|
||||||
|
if (a.directory != null) {
|
||||||
|
UpdateCheckboxes();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void UpdateCheckboxes()
|
||||||
|
{
|
||||||
|
a.ParseFSOutput();
|
||||||
|
aclGrp.Enabled = true;
|
||||||
|
applyBtn.Enabled = true;
|
||||||
|
recursiveChkBox.Enabled = true;
|
||||||
|
|
||||||
|
readChkBox.Checked = Convert.ToBoolean(a.acls["r"]);
|
||||||
|
lookupChkBox.Checked = Convert.ToBoolean(a.acls["l"]);
|
||||||
|
insertChkBox.Checked = Convert.ToBoolean(a.acls["i"]);
|
||||||
|
deleteChkBox.Checked = Convert.ToBoolean(a.acls["d"]);
|
||||||
|
writeChkBox.Checked = Convert.ToBoolean(a.acls["w"]);
|
||||||
|
lockChkBox.Checked = Convert.ToBoolean(a.acls["k"]);
|
||||||
|
administerChkBox.Checked = Convert.ToBoolean(a.acls["a"]);
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getAclString()
|
||||||
|
{
|
||||||
|
String output = "";
|
||||||
|
|
||||||
|
if (readChkBox.Checked) { output += "r"; }
|
||||||
|
if (lookupChkBox.Checked) { output += "l"; }
|
||||||
|
if (insertChkBox.Checked) { output += "i"; }
|
||||||
|
if (deleteChkBox.Checked) { output += "d"; }
|
||||||
|
if (writeChkBox.Checked) { output += "w"; }
|
||||||
|
if (lockChkBox.Checked) { output += "k"; }
|
||||||
|
if (administerChkBox.Checked) { output += "a"; }
|
||||||
|
|
||||||
|
// Se não tiver nenhuma ACL definida a ACL é none
|
||||||
|
if (output == "")
|
||||||
|
{
|
||||||
|
output = "none";
|
||||||
|
}
|
||||||
|
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void identificadorTxt_TextChanged(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
procurarBtn.Enabled = false;
|
||||||
|
if (identificadorTxt.Text.Length > 0) {
|
||||||
|
procurarBtn.Enabled = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void applyBtn_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
a.ApplyAcl(getAclString(), recursiveChkBox.Checked);
|
||||||
|
UpdateCheckboxes();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<assemblyIdentity name="ACLAFS.application" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<description asmv2:publisher="ACLAFS" asmv2:product="ACLAFS" xmlns="urn:schemas-microsoft-com:asm.v1" />
|
||||||
|
<deployment install="true" mapFileExtensions="true" />
|
||||||
|
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<framework targetVersion="4.5" profile="Full" supportedRuntime="4.0.30319" />
|
||||||
|
</compatibleFrameworks>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" codebase="ACLAFS.exe.manifest" size="3446">
|
||||||
|
<assemblyIdentity name="ACLAFS.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||||
|
<dsig:DigestValue>EL11mHhKdgakMzZy8vOa1PBzOZIkgAzYLg+VNr7Pa3g=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
</asmv1:assembly>
|
|
@ -0,0 +1,13 @@
|
||||||
|
c:\users\pedro\documents\visual studio 2013\Projects\ACLAFS\ACLAFS\bin\Debug\ACLAFS.exe.config
|
||||||
|
c:\users\pedro\documents\visual studio 2013\Projects\ACLAFS\ACLAFS\bin\Debug\ACLAFS.exe
|
||||||
|
c:\users\pedro\documents\visual studio 2013\Projects\ACLAFS\ACLAFS\bin\Debug\ACLAFS.pdb
|
||||||
|
c:\users\pedro\documents\visual studio 2013\Projects\ACLAFS\ACLAFS\obj\Debug\ACLAFS.csprojResolveAssemblyReference.cache
|
||||||
|
c:\users\pedro\documents\visual studio 2013\Projects\ACLAFS\ACLAFS\obj\Debug\ACLAFS.mainForm.resources
|
||||||
|
c:\users\pedro\documents\visual studio 2013\Projects\ACLAFS\ACLAFS\obj\Debug\ACLAFS.Properties.Resources.resources
|
||||||
|
c:\users\pedro\documents\visual studio 2013\Projects\ACLAFS\ACLAFS\obj\Debug\ACLAFS.csproj.GenerateResource.Cache
|
||||||
|
c:\users\pedro\documents\visual studio 2013\Projects\ACLAFS\ACLAFS\obj\Debug\ACLAFS.exe
|
||||||
|
c:\users\pedro\documents\visual studio 2013\Projects\ACLAFS\ACLAFS\obj\Debug\ACLAFS.pdb
|
||||||
|
c:\users\pedro\documents\visual studio 2013\Projects\ACLAFS\ACLAFS\bin\Debug\ACLAFS.exe.manifest
|
||||||
|
c:\users\pedro\documents\visual studio 2013\Projects\ACLAFS\ACLAFS\bin\Debug\ACLAFS.application
|
||||||
|
c:\users\pedro\documents\visual studio 2013\Projects\ACLAFS\ACLAFS\obj\Debug\ACLAFS.exe.manifest
|
||||||
|
c:\users\pedro\documents\visual studio 2013\Projects\ACLAFS\ACLAFS\obj\Debug\ACLAFS.application
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
|
||||||
|
<asmv1:assemblyIdentity name="ACLAFS.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
|
||||||
|
<application />
|
||||||
|
<entryPoint>
|
||||||
|
<assemblyIdentity name="ACLAFS" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
|
||||||
|
<commandLine file="ACLAFS.exe" parameters="" />
|
||||||
|
</entryPoint>
|
||||||
|
<trustInfo>
|
||||||
|
<security>
|
||||||
|
<applicationRequestMinimum>
|
||||||
|
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
|
||||||
|
<defaultAssemblyRequest permissionSetReference="Custom" />
|
||||||
|
</applicationRequestMinimum>
|
||||||
|
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<!--
|
||||||
|
UAC Manifest Options
|
||||||
|
If you want to change the Windows User Account Control level replace the
|
||||||
|
requestedExecutionLevel node with one of the following.
|
||||||
|
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||||
|
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||||
|
|
||||||
|
If you want to utilize File and Registry Virtualization for backward
|
||||||
|
compatibility then delete the requestedExecutionLevel node.
|
||||||
|
-->
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
<dependency>
|
||||||
|
<dependentOS>
|
||||||
|
<osVersionInfo>
|
||||||
|
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
|
||||||
|
</osVersionInfo>
|
||||||
|
</dependentOS>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
|
||||||
|
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ACLAFS.exe" size="84480">
|
||||||
|
<assemblyIdentity name="ACLAFS" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||||
|
<dsig:DigestValue>+7f6tNxInP4jLUmAqC66gc5ETvoxxx+4w+jd7L2TZqY=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<file name="ACLAFS.exe.config" size="187">
|
||||||
|
<hash>
|
||||||
|
<dsig:Transforms>
|
||||||
|
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
|
||||||
|
</dsig:Transforms>
|
||||||
|
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
|
||||||
|
<dsig:DigestValue>xm4bo26HQ0LNVwz1vdPYtzhkpMnp2AI5i+f0b+OahTI=</dsig:DigestValue>
|
||||||
|
</hash>
|
||||||
|
</file>
|
||||||
|
</asmv1:assembly>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue