├── .gitattributes ├── .gitignore ├── GPOTools ├── GPOTools.psd1 ├── GPOTools.psm1 ├── bin │ └── readme.md ├── changelog.md ├── en-us │ ├── about_GPOTools.help.txt │ └── strings.psd1 ├── functions │ ├── Backup-GptPolicy.ps1 │ ├── Export-GptDomainData.ps1 │ ├── Export-GptIdentity.ps1 │ ├── Export-GptLink.ps1 │ ├── Export-GptObject.ps1 │ ├── Export-GptPermission.ps1 │ ├── Export-GptWmiFilter.ps1 │ ├── Get-GptPrincipal.ps1 │ ├── Import-GptDomainData.ps1 │ ├── Import-GptIdentity.ps1 │ ├── Import-GptLink.ps1 │ ├── Import-GptObject.ps1 │ ├── Import-GptPermission.ps1 │ ├── Import-GptWmiFilter.ps1 │ ├── Register-GptDomainMapping.ps1 │ ├── Restore-GptPolicy.ps1 │ └── readme.md ├── internal │ ├── configurations │ │ ├── configuration.ps1 │ │ └── readme.md │ ├── functions │ │ ├── ConvertFrom-ImportedIdentity.ps1 │ │ ├── ConvertTo-DnsDomainName.ps1 │ │ ├── Get-DomainData.ps1 │ │ ├── New-ImportResult.ps1 │ │ ├── New-MigrationTable.ps1 │ │ ├── Resolve-ADPrincipal.ps1 │ │ ├── Resolve-DomainMapping.ps1 │ │ ├── Test-IsDistinguishedName.ps1 │ │ ├── Test-Overlap.ps1 │ │ ├── Update-NetworkDrive.ps1 │ │ └── readme.md │ ├── scriptblocks │ │ └── scriptblocks.ps1 │ ├── scripts │ │ ├── license.ps1 │ │ ├── postimport.ps1 │ │ ├── preimport.ps1 │ │ └── strings.ps1 │ └── tepp │ │ ├── assignment.ps1 │ │ ├── example.tepp.ps1 │ │ └── readme.md ├── readme.md ├── tests │ ├── functions │ │ └── readme.md │ ├── general │ │ ├── FileIntegrity.Exceptions.ps1 │ │ ├── FileIntegrity.Tests.ps1 │ │ ├── Help.Exceptions.ps1 │ │ ├── Help.Tests.ps1 │ │ ├── Manifest.Tests.ps1 │ │ └── PSScriptAnalyzer.Tests.ps1 │ ├── pester.ps1 │ └── readme.md └── xml │ ├── GPOTools.Format.ps1xml │ ├── GPOTools.Types.ps1xml │ └── readme.md ├── LICENSE ├── README.md ├── azFunctionResources ├── clientModule │ ├── function.ps1 │ ├── functions │ │ └── Connect-GPOTools.ps1 │ ├── internal │ │ ├── configurations │ │ │ └── connection.ps1 │ │ └── functions │ │ │ └── Get-InternalConnectionData.ps1 │ └── moduleroot.psm1 ├── functionOverride │ ├── Get-Example.json │ ├── Get-Example.ps1 │ └── Get-Example.psd1 ├── host.json ├── local.settings.json ├── profile.ps1 ├── profileFunctions │ ├── Convert-AzureFunctionParameter.ps1 │ ├── Set-AzureFunctionStatus.ps1 │ └── Write-AzureFunctionOutput.ps1 ├── readme.md └── run.ps1 ├── install.ps1 ├── labdefinitions └── gpoMigration.lab.ps1 └── library └── GPOTools ├── GPOTools.sln └── GPOTools ├── Class1.cs └── GPOTools.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/.gitignore -------------------------------------------------------------------------------- /GPOTools/GPOTools.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/GPOTools.psd1 -------------------------------------------------------------------------------- /GPOTools/GPOTools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/GPOTools.psm1 -------------------------------------------------------------------------------- /GPOTools/bin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/bin/readme.md -------------------------------------------------------------------------------- /GPOTools/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/changelog.md -------------------------------------------------------------------------------- /GPOTools/en-us/about_GPOTools.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/en-us/about_GPOTools.help.txt -------------------------------------------------------------------------------- /GPOTools/en-us/strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/en-us/strings.psd1 -------------------------------------------------------------------------------- /GPOTools/functions/Backup-GptPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Backup-GptPolicy.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Export-GptDomainData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Export-GptDomainData.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Export-GptIdentity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Export-GptIdentity.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Export-GptLink.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Export-GptLink.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Export-GptObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Export-GptObject.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Export-GptPermission.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Export-GptPermission.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Export-GptWmiFilter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Export-GptWmiFilter.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Get-GptPrincipal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Get-GptPrincipal.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Import-GptDomainData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Import-GptDomainData.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Import-GptIdentity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Import-GptIdentity.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Import-GptLink.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Import-GptLink.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Import-GptObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Import-GptObject.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Import-GptPermission.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Import-GptPermission.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Import-GptWmiFilter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Import-GptWmiFilter.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Register-GptDomainMapping.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Register-GptDomainMapping.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/Restore-GptPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/Restore-GptPolicy.ps1 -------------------------------------------------------------------------------- /GPOTools/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/functions/readme.md -------------------------------------------------------------------------------- /GPOTools/internal/configurations/configuration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/configurations/configuration.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/configurations/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/configurations/readme.md -------------------------------------------------------------------------------- /GPOTools/internal/functions/ConvertFrom-ImportedIdentity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/functions/ConvertFrom-ImportedIdentity.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/functions/ConvertTo-DnsDomainName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/functions/ConvertTo-DnsDomainName.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/functions/Get-DomainData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/functions/Get-DomainData.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/functions/New-ImportResult.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/functions/New-ImportResult.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/functions/New-MigrationTable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/functions/New-MigrationTable.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/functions/Resolve-ADPrincipal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/functions/Resolve-ADPrincipal.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/functions/Resolve-DomainMapping.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/functions/Resolve-DomainMapping.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/functions/Test-IsDistinguishedName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/functions/Test-IsDistinguishedName.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/functions/Test-Overlap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/functions/Test-Overlap.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/functions/Update-NetworkDrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/functions/Update-NetworkDrive.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/functions/readme.md -------------------------------------------------------------------------------- /GPOTools/internal/scriptblocks/scriptblocks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/scriptblocks/scriptblocks.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/scripts/license.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/scripts/license.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/scripts/postimport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/scripts/postimport.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/scripts/preimport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/scripts/preimport.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/scripts/strings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/scripts/strings.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/tepp/assignment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/tepp/assignment.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/tepp/example.tepp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/tepp/example.tepp.ps1 -------------------------------------------------------------------------------- /GPOTools/internal/tepp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/internal/tepp/readme.md -------------------------------------------------------------------------------- /GPOTools/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/readme.md -------------------------------------------------------------------------------- /GPOTools/tests/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/tests/functions/readme.md -------------------------------------------------------------------------------- /GPOTools/tests/general/FileIntegrity.Exceptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/tests/general/FileIntegrity.Exceptions.ps1 -------------------------------------------------------------------------------- /GPOTools/tests/general/FileIntegrity.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/tests/general/FileIntegrity.Tests.ps1 -------------------------------------------------------------------------------- /GPOTools/tests/general/Help.Exceptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/tests/general/Help.Exceptions.ps1 -------------------------------------------------------------------------------- /GPOTools/tests/general/Help.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/tests/general/Help.Tests.ps1 -------------------------------------------------------------------------------- /GPOTools/tests/general/Manifest.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/tests/general/Manifest.Tests.ps1 -------------------------------------------------------------------------------- /GPOTools/tests/general/PSScriptAnalyzer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/tests/general/PSScriptAnalyzer.Tests.ps1 -------------------------------------------------------------------------------- /GPOTools/tests/pester.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/tests/pester.ps1 -------------------------------------------------------------------------------- /GPOTools/tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/tests/readme.md -------------------------------------------------------------------------------- /GPOTools/xml/GPOTools.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/xml/GPOTools.Format.ps1xml -------------------------------------------------------------------------------- /GPOTools/xml/GPOTools.Types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/xml/GPOTools.Types.ps1xml -------------------------------------------------------------------------------- /GPOTools/xml/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/GPOTools/xml/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/README.md -------------------------------------------------------------------------------- /azFunctionResources/clientModule/function.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/clientModule/function.ps1 -------------------------------------------------------------------------------- /azFunctionResources/clientModule/functions/Connect-GPOTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/clientModule/functions/Connect-GPOTools.ps1 -------------------------------------------------------------------------------- /azFunctionResources/clientModule/internal/configurations/connection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/clientModule/internal/configurations/connection.ps1 -------------------------------------------------------------------------------- /azFunctionResources/clientModule/internal/functions/Get-InternalConnectionData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/clientModule/internal/functions/Get-InternalConnectionData.ps1 -------------------------------------------------------------------------------- /azFunctionResources/clientModule/moduleroot.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/clientModule/moduleroot.psm1 -------------------------------------------------------------------------------- /azFunctionResources/functionOverride/Get-Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/functionOverride/Get-Example.json -------------------------------------------------------------------------------- /azFunctionResources/functionOverride/Get-Example.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/functionOverride/Get-Example.ps1 -------------------------------------------------------------------------------- /azFunctionResources/functionOverride/Get-Example.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/functionOverride/Get-Example.psd1 -------------------------------------------------------------------------------- /azFunctionResources/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/host.json -------------------------------------------------------------------------------- /azFunctionResources/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/local.settings.json -------------------------------------------------------------------------------- /azFunctionResources/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/profile.ps1 -------------------------------------------------------------------------------- /azFunctionResources/profileFunctions/Convert-AzureFunctionParameter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/profileFunctions/Convert-AzureFunctionParameter.ps1 -------------------------------------------------------------------------------- /azFunctionResources/profileFunctions/Set-AzureFunctionStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/profileFunctions/Set-AzureFunctionStatus.ps1 -------------------------------------------------------------------------------- /azFunctionResources/profileFunctions/Write-AzureFunctionOutput.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/profileFunctions/Write-AzureFunctionOutput.ps1 -------------------------------------------------------------------------------- /azFunctionResources/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/readme.md -------------------------------------------------------------------------------- /azFunctionResources/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/azFunctionResources/run.ps1 -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/install.ps1 -------------------------------------------------------------------------------- /labdefinitions/gpoMigration.lab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/labdefinitions/gpoMigration.lab.ps1 -------------------------------------------------------------------------------- /library/GPOTools/GPOTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/library/GPOTools/GPOTools.sln -------------------------------------------------------------------------------- /library/GPOTools/GPOTools/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/library/GPOTools/GPOTools/Class1.cs -------------------------------------------------------------------------------- /library/GPOTools/GPOTools/GPOTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/GPOTools/HEAD/library/GPOTools/GPOTools/GPOTools.csproj --------------------------------------------------------------------------------