├── LICENSE ├── Microsoft ├── ActiveDirectory │ ├── ActiveDirectory.Tests.ps1 │ └── ActiveDirectoryDomainControllers.Tests.ps1 ├── ExchangeServer │ ├── 2010 │ │ └── ex2010.tests.ps1 │ └── 2013 │ │ └── ExchangeServer.Tests.ps1 ├── HyperV │ └── HyperV.Tests.ps1 ├── IdentityManager │ └── FIMValidation.Tests.ps1 ├── PowershellStyle │ └── Powershell.Syntax.Tests.ps1 ├── SQLserver │ └── SQL.Server.Tests.ps1 └── VirtualMachineManager │ └── VirtualMachineManager.Tests.ps1 ├── README.md └── Veeam ├── Veeam.BackupServer.Tests.ps1 └── Veeam.Cloud.Gateway.Tests.ps1 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torgro/PesterOperationTest/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft/ActiveDirectory/ActiveDirectory.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torgro/PesterOperationTest/HEAD/Microsoft/ActiveDirectory/ActiveDirectory.Tests.ps1 -------------------------------------------------------------------------------- /Microsoft/ActiveDirectory/ActiveDirectoryDomainControllers.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torgro/PesterOperationTest/HEAD/Microsoft/ActiveDirectory/ActiveDirectoryDomainControllers.Tests.ps1 -------------------------------------------------------------------------------- /Microsoft/ExchangeServer/2010/ex2010.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torgro/PesterOperationTest/HEAD/Microsoft/ExchangeServer/2010/ex2010.tests.ps1 -------------------------------------------------------------------------------- /Microsoft/ExchangeServer/2013/ExchangeServer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torgro/PesterOperationTest/HEAD/Microsoft/ExchangeServer/2013/ExchangeServer.Tests.ps1 -------------------------------------------------------------------------------- /Microsoft/HyperV/HyperV.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torgro/PesterOperationTest/HEAD/Microsoft/HyperV/HyperV.Tests.ps1 -------------------------------------------------------------------------------- /Microsoft/IdentityManager/FIMValidation.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torgro/PesterOperationTest/HEAD/Microsoft/IdentityManager/FIMValidation.Tests.ps1 -------------------------------------------------------------------------------- /Microsoft/PowershellStyle/Powershell.Syntax.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torgro/PesterOperationTest/HEAD/Microsoft/PowershellStyle/Powershell.Syntax.Tests.ps1 -------------------------------------------------------------------------------- /Microsoft/SQLserver/SQL.Server.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torgro/PesterOperationTest/HEAD/Microsoft/SQLserver/SQL.Server.Tests.ps1 -------------------------------------------------------------------------------- /Microsoft/VirtualMachineManager/VirtualMachineManager.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torgro/PesterOperationTest/HEAD/Microsoft/VirtualMachineManager/VirtualMachineManager.Tests.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torgro/PesterOperationTest/HEAD/README.md -------------------------------------------------------------------------------- /Veeam/Veeam.BackupServer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torgro/PesterOperationTest/HEAD/Veeam/Veeam.BackupServer.Tests.ps1 -------------------------------------------------------------------------------- /Veeam/Veeam.Cloud.Gateway.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torgro/PesterOperationTest/HEAD/Veeam/Veeam.Cloud.Gateway.Tests.ps1 --------------------------------------------------------------------------------