├── .gitattributes ├── .gitignore ├── README.md ├── SharpEfsPotato.sln └── SharpEfsPotato ├── Options.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SharpEfsPotato.csproj ├── SharpEfsTrigger ├── efs.cs ├── nativemethods.cs └── rpcapi.cs ├── SweetPotato └── Privilege.cs └── app.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugch3ck/SharpEfsPotato/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugch3ck/SharpEfsPotato/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugch3ck/SharpEfsPotato/HEAD/README.md -------------------------------------------------------------------------------- /SharpEfsPotato.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugch3ck/SharpEfsPotato/HEAD/SharpEfsPotato.sln -------------------------------------------------------------------------------- /SharpEfsPotato/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugch3ck/SharpEfsPotato/HEAD/SharpEfsPotato/Options.cs -------------------------------------------------------------------------------- /SharpEfsPotato/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugch3ck/SharpEfsPotato/HEAD/SharpEfsPotato/Program.cs -------------------------------------------------------------------------------- /SharpEfsPotato/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugch3ck/SharpEfsPotato/HEAD/SharpEfsPotato/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpEfsPotato/SharpEfsPotato.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugch3ck/SharpEfsPotato/HEAD/SharpEfsPotato/SharpEfsPotato.csproj -------------------------------------------------------------------------------- /SharpEfsPotato/SharpEfsTrigger/efs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugch3ck/SharpEfsPotato/HEAD/SharpEfsPotato/SharpEfsTrigger/efs.cs -------------------------------------------------------------------------------- /SharpEfsPotato/SharpEfsTrigger/nativemethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugch3ck/SharpEfsPotato/HEAD/SharpEfsPotato/SharpEfsTrigger/nativemethods.cs -------------------------------------------------------------------------------- /SharpEfsPotato/SharpEfsTrigger/rpcapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugch3ck/SharpEfsPotato/HEAD/SharpEfsPotato/SharpEfsTrigger/rpcapi.cs -------------------------------------------------------------------------------- /SharpEfsPotato/SweetPotato/Privilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugch3ck/SharpEfsPotato/HEAD/SharpEfsPotato/SweetPotato/Privilege.cs -------------------------------------------------------------------------------- /SharpEfsPotato/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugch3ck/SharpEfsPotato/HEAD/SharpEfsPotato/app.config --------------------------------------------------------------------------------