├── .gitattributes ├── FTP └── UploadContents-FTPServer.ps1 ├── File System ├── Copy-FilesOnDomainUsingDifferentCredentials.ps1 ├── Extract-ZipArchives.ps1 └── Run-SQLServerManagementAsOtherUser.ps1 ├── IIS ├── IIS-Batch-WebApplication-Configuration.ps1 ├── IIS-ServerSettings-AddCommonMimeTypes.ps1 ├── IIS-ServerSettings-EnableOnlyKnownMimeTypes.ps1 ├── IIS-ServerSettings-SetAppPoolIdentityAnonymous.ps1 ├── IIS-ServerSettings-SetRequireSSLForFormsAuth.ps1 ├── IIS-ServerSettings-SetRequireSSLOnAllWebsites.ps1 ├── IIS-ServerSettings-SetRetailMode.ps1 ├── IIS-ServerSettings-TurnAutomaticBackupsOn.ps1 ├── IIS-WebsiteSettings-EncryptWebConfigConnectionStrings.ps1 ├── Install-WebDeploy.ps1 └── Manager module │ ├── IIS-Manager.psd1 │ └── IIS-Manager.psm1 ├── LICENSE.txt ├── Misc ├── Automate Windows Security prompt input │ ├── Run-Explorer.ps1 │ ├── Run-RemoteDesktop.ps1 │ └── Run-SqlTool.ps1 ├── Create schedule task to execute ps1 script │ ├── Kill-Process.ps1 │ ├── Kill-Process.vbs │ └── Setup │ │ ├── Create-ScheduleTask-To-Kill-Process.ps1 │ │ └── ScheduleTask-To-Kill-Process.xml ├── PowerShell 5 Presentation Scripts (April 2015) │ ├── Demo-Class_Enum-Script.ps1 │ ├── Demo-CodeAnalysis-Commands.ps1 │ ├── Demo-OneGet-Commands.ps1 │ ├── Demo-OurOwnOneGet-Commands.ps1 │ ├── Demo-OurPowerShellGet-Commands.ps1 │ ├── Demo-ParseContacts-Commands.ps1 │ └── contacts.adr └── Wiremock │ └── Download-Start-Wiremock.ps1 ├── NuGet └── CreateAndPublishNuGetPackage.ps1 ├── Octopus-Deploy ├── API │ └── Add-Machine.ps1 ├── Create-ScheduledTask.ps1 ├── DACPAC-Deploy-Helpers.ps1 ├── Replace-WebConfig-ConnectionStringsKeys-With-OctopusVars.ps1 └── WebDeploy-Helpers.ps1 ├── Performance └── RunPerfMonitor-AppServers.ps1 ├── README.md ├── SQL Server Install ├── ConfigFile │ └── SQLServerConfigurationFile.ini └── SQLServerInstall.ps1 ├── SQL ├── Insert-SeedData.ps1 └── SetupScripts │ ├── 001.Pre-Deploy.sql │ ├── 800.Grant_DOMAIN-Username_Access.sql │ └── 900.Post-Deploy.sql ├── Security ├── Set-AcceptedCryptographicProtocols.ps1 └── Set-StrongCryptographyDotNet.ps1 ├── TeamCity └── Version-DatabaseProject.ps1 ├── Visual Studio ├── Locate-and-Load-DLL.ps1 ├── Manage-Intellitrace.ps1 ├── Run-NUnitIntegrationTests.ps1 ├── RunIntegrationTests.ps1 ├── RunTestsWithCoverageData.ps1 └── SQL Server Projects │ ├── BatchDeploy-DACPACs.ps1 │ └── BuildPostDeploymentScript.ps1 ├── Web └── Get-ImagesFromWebsite.ps1 └── WebDeploy ├── Fetch-SetParameters.ps1 ├── Install-WebPackage.ps1 └── Modify-SetParameters.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/.gitattributes -------------------------------------------------------------------------------- /FTP/UploadContents-FTPServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/FTP/UploadContents-FTPServer.ps1 -------------------------------------------------------------------------------- /File System/Copy-FilesOnDomainUsingDifferentCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/File System/Copy-FilesOnDomainUsingDifferentCredentials.ps1 -------------------------------------------------------------------------------- /File System/Extract-ZipArchives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/File System/Extract-ZipArchives.ps1 -------------------------------------------------------------------------------- /File System/Run-SQLServerManagementAsOtherUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/File System/Run-SQLServerManagementAsOtherUser.ps1 -------------------------------------------------------------------------------- /IIS/IIS-Batch-WebApplication-Configuration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/IIS/IIS-Batch-WebApplication-Configuration.ps1 -------------------------------------------------------------------------------- /IIS/IIS-ServerSettings-AddCommonMimeTypes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/IIS/IIS-ServerSettings-AddCommonMimeTypes.ps1 -------------------------------------------------------------------------------- /IIS/IIS-ServerSettings-EnableOnlyKnownMimeTypes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/IIS/IIS-ServerSettings-EnableOnlyKnownMimeTypes.ps1 -------------------------------------------------------------------------------- /IIS/IIS-ServerSettings-SetAppPoolIdentityAnonymous.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/IIS/IIS-ServerSettings-SetAppPoolIdentityAnonymous.ps1 -------------------------------------------------------------------------------- /IIS/IIS-ServerSettings-SetRequireSSLForFormsAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/IIS/IIS-ServerSettings-SetRequireSSLForFormsAuth.ps1 -------------------------------------------------------------------------------- /IIS/IIS-ServerSettings-SetRequireSSLOnAllWebsites.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/IIS/IIS-ServerSettings-SetRequireSSLOnAllWebsites.ps1 -------------------------------------------------------------------------------- /IIS/IIS-ServerSettings-SetRetailMode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/IIS/IIS-ServerSettings-SetRetailMode.ps1 -------------------------------------------------------------------------------- /IIS/IIS-ServerSettings-TurnAutomaticBackupsOn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/IIS/IIS-ServerSettings-TurnAutomaticBackupsOn.ps1 -------------------------------------------------------------------------------- /IIS/IIS-WebsiteSettings-EncryptWebConfigConnectionStrings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/IIS/IIS-WebsiteSettings-EncryptWebConfigConnectionStrings.ps1 -------------------------------------------------------------------------------- /IIS/Install-WebDeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/IIS/Install-WebDeploy.ps1 -------------------------------------------------------------------------------- /IIS/Manager module/IIS-Manager.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/IIS/Manager module/IIS-Manager.psd1 -------------------------------------------------------------------------------- /IIS/Manager module/IIS-Manager.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/IIS/Manager module/IIS-Manager.psm1 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Misc/Automate Windows Security prompt input/Run-Explorer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/Automate Windows Security prompt input/Run-Explorer.ps1 -------------------------------------------------------------------------------- /Misc/Automate Windows Security prompt input/Run-RemoteDesktop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/Automate Windows Security prompt input/Run-RemoteDesktop.ps1 -------------------------------------------------------------------------------- /Misc/Automate Windows Security prompt input/Run-SqlTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/Automate Windows Security prompt input/Run-SqlTool.ps1 -------------------------------------------------------------------------------- /Misc/Create schedule task to execute ps1 script/Kill-Process.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/Create schedule task to execute ps1 script/Kill-Process.ps1 -------------------------------------------------------------------------------- /Misc/Create schedule task to execute ps1 script/Kill-Process.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/Create schedule task to execute ps1 script/Kill-Process.vbs -------------------------------------------------------------------------------- /Misc/Create schedule task to execute ps1 script/Setup/Create-ScheduleTask-To-Kill-Process.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/Create schedule task to execute ps1 script/Setup/Create-ScheduleTask-To-Kill-Process.ps1 -------------------------------------------------------------------------------- /Misc/Create schedule task to execute ps1 script/Setup/ScheduleTask-To-Kill-Process.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/Create schedule task to execute ps1 script/Setup/ScheduleTask-To-Kill-Process.xml -------------------------------------------------------------------------------- /Misc/PowerShell 5 Presentation Scripts (April 2015)/Demo-Class_Enum-Script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/PowerShell 5 Presentation Scripts (April 2015)/Demo-Class_Enum-Script.ps1 -------------------------------------------------------------------------------- /Misc/PowerShell 5 Presentation Scripts (April 2015)/Demo-CodeAnalysis-Commands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/PowerShell 5 Presentation Scripts (April 2015)/Demo-CodeAnalysis-Commands.ps1 -------------------------------------------------------------------------------- /Misc/PowerShell 5 Presentation Scripts (April 2015)/Demo-OneGet-Commands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/PowerShell 5 Presentation Scripts (April 2015)/Demo-OneGet-Commands.ps1 -------------------------------------------------------------------------------- /Misc/PowerShell 5 Presentation Scripts (April 2015)/Demo-OurOwnOneGet-Commands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/PowerShell 5 Presentation Scripts (April 2015)/Demo-OurOwnOneGet-Commands.ps1 -------------------------------------------------------------------------------- /Misc/PowerShell 5 Presentation Scripts (April 2015)/Demo-OurPowerShellGet-Commands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/PowerShell 5 Presentation Scripts (April 2015)/Demo-OurPowerShellGet-Commands.ps1 -------------------------------------------------------------------------------- /Misc/PowerShell 5 Presentation Scripts (April 2015)/Demo-ParseContacts-Commands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/PowerShell 5 Presentation Scripts (April 2015)/Demo-ParseContacts-Commands.ps1 -------------------------------------------------------------------------------- /Misc/PowerShell 5 Presentation Scripts (April 2015)/contacts.adr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/PowerShell 5 Presentation Scripts (April 2015)/contacts.adr -------------------------------------------------------------------------------- /Misc/Wiremock/Download-Start-Wiremock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Misc/Wiremock/Download-Start-Wiremock.ps1 -------------------------------------------------------------------------------- /NuGet/CreateAndPublishNuGetPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/NuGet/CreateAndPublishNuGetPackage.ps1 -------------------------------------------------------------------------------- /Octopus-Deploy/API/Add-Machine.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Octopus-Deploy/API/Add-Machine.ps1 -------------------------------------------------------------------------------- /Octopus-Deploy/Create-ScheduledTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Octopus-Deploy/Create-ScheduledTask.ps1 -------------------------------------------------------------------------------- /Octopus-Deploy/DACPAC-Deploy-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Octopus-Deploy/DACPAC-Deploy-Helpers.ps1 -------------------------------------------------------------------------------- /Octopus-Deploy/Replace-WebConfig-ConnectionStringsKeys-With-OctopusVars.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Octopus-Deploy/Replace-WebConfig-ConnectionStringsKeys-With-OctopusVars.ps1 -------------------------------------------------------------------------------- /Octopus-Deploy/WebDeploy-Helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Octopus-Deploy/WebDeploy-Helpers.ps1 -------------------------------------------------------------------------------- /Performance/RunPerfMonitor-AppServers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Performance/RunPerfMonitor-AppServers.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/README.md -------------------------------------------------------------------------------- /SQL Server Install/ConfigFile/SQLServerConfigurationFile.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/SQL Server Install/ConfigFile/SQLServerConfigurationFile.ini -------------------------------------------------------------------------------- /SQL Server Install/SQLServerInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/SQL Server Install/SQLServerInstall.ps1 -------------------------------------------------------------------------------- /SQL/Insert-SeedData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/SQL/Insert-SeedData.ps1 -------------------------------------------------------------------------------- /SQL/SetupScripts/001.Pre-Deploy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/SQL/SetupScripts/001.Pre-Deploy.sql -------------------------------------------------------------------------------- /SQL/SetupScripts/800.Grant_DOMAIN-Username_Access.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/SQL/SetupScripts/800.Grant_DOMAIN-Username_Access.sql -------------------------------------------------------------------------------- /SQL/SetupScripts/900.Post-Deploy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/SQL/SetupScripts/900.Post-Deploy.sql -------------------------------------------------------------------------------- /Security/Set-AcceptedCryptographicProtocols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Security/Set-AcceptedCryptographicProtocols.ps1 -------------------------------------------------------------------------------- /Security/Set-StrongCryptographyDotNet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Security/Set-StrongCryptographyDotNet.ps1 -------------------------------------------------------------------------------- /TeamCity/Version-DatabaseProject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/TeamCity/Version-DatabaseProject.ps1 -------------------------------------------------------------------------------- /Visual Studio/Locate-and-Load-DLL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Visual Studio/Locate-and-Load-DLL.ps1 -------------------------------------------------------------------------------- /Visual Studio/Manage-Intellitrace.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Visual Studio/Manage-Intellitrace.ps1 -------------------------------------------------------------------------------- /Visual Studio/Run-NUnitIntegrationTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Visual Studio/Run-NUnitIntegrationTests.ps1 -------------------------------------------------------------------------------- /Visual Studio/RunIntegrationTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Visual Studio/RunIntegrationTests.ps1 -------------------------------------------------------------------------------- /Visual Studio/RunTestsWithCoverageData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Visual Studio/RunTestsWithCoverageData.ps1 -------------------------------------------------------------------------------- /Visual Studio/SQL Server Projects/BatchDeploy-DACPACs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Visual Studio/SQL Server Projects/BatchDeploy-DACPACs.ps1 -------------------------------------------------------------------------------- /Visual Studio/SQL Server Projects/BuildPostDeploymentScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Visual Studio/SQL Server Projects/BuildPostDeploymentScript.ps1 -------------------------------------------------------------------------------- /Web/Get-ImagesFromWebsite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/Web/Get-ImagesFromWebsite.ps1 -------------------------------------------------------------------------------- /WebDeploy/Fetch-SetParameters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/WebDeploy/Fetch-SetParameters.ps1 -------------------------------------------------------------------------------- /WebDeploy/Install-WebPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/WebDeploy/Install-WebPackage.ps1 -------------------------------------------------------------------------------- /WebDeploy/Modify-SetParameters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlouros/PowerShell-toolbox/HEAD/WebDeploy/Modify-SetParameters.ps1 --------------------------------------------------------------------------------