├── .codespellrc ├── .gitattributes ├── .github ├── actions │ └── initialize │ │ └── action.yml └── workflows │ ├── codespell.yml │ ├── create-jira-issues-for-community-activities.yml │ ├── static-code-analysis.yml │ └── validate-pull-request.yml ├── .gitignore ├── AddPathToPSModulePath.ps1 ├── Azure ├── Copy-ToAzureDevelopmentStorage │ └── Copy-ToAzureDevelopmentStorage.psm1 └── Start-Azurite │ └── Start-Azurite.psm1 ├── DotNetCLI ├── Get-VisualStudioProjectNuGetPackage │ └── Get-VisualStudioProjectNuGetPackage.psm1 ├── Get-VisualStudioSolutionProjectPath │ └── Get-VisualStudioSolutionProjectPath.psm1 ├── Update-DotNetDevelopmentCertificateHttps │ └── Update-DotNetDevelopmentCertificateHttps.psm1 └── Update-VisualStudioSolutionNuGetPackages │ └── Update-VisualStudioSolutionNuGetPackages.psm1 ├── Ftp ├── Get-FtpDirectory │ └── Get-FtpDirectory.psm1 ├── Get-FtpFile │ └── Get-FtpFile.psm1 ├── New-FtpDirectory │ └── New-FtpDirectory.psm1 ├── Remove-FtpDirectory │ └── Remove-FtpDirectory.psm1 └── Rename-FtpDirectory │ └── Rename-FtpDirectory.psm1 ├── GitHub └── Get-GitHubPullRequest │ └── Get-GitHubPullRequest.psm1 ├── License.md ├── Orchard1 ├── Reset-AppDataFolder │ └── Reset-AppDataFolder.psm1 └── Restart-Site │ └── Restart-Site.psm1 ├── OrchardCore ├── Initialize-OrchardCoreSolution │ ├── .gitignore.template │ ├── Initialize-OrchardCoreSolution.psd1 │ └── Initialize-OrchardCoreSolution.psm1 └── Reset-OrchardCoreApp │ └── Reset-OrchardCoreApp.psm1 ├── Readme.md ├── ReloadEveryModuleInPSModulePaths.ps1 ├── SourceControl ├── ArchiveLastCommitToFolder.bat ├── ExportLastCommitToAnotherHgRepo.bat └── ExportLastCommitToGit.bat ├── SqlServer ├── Get-DefaultSqlServerName │ └── Get-DefaultSqlServerName.psm1 ├── Import-BacpacToSqlServer │ ├── Import-BacpacToSqlServer.docker.edit.reg │ ├── Import-BacpacToSqlServer.psm1 │ └── Import-BacpacToSqlServer.reg ├── New-SqlServerConnection │ └── New-SqlServerConnection.psm1 ├── New-SqlServerDatabase │ └── New-SqlServerDatabase.psm1 ├── Test-SqlServer │ └── Test-SqlServer.psm1 └── Test-SqlServerDatabase │ └── Test-SqlServerDatabase.psm1 ├── Utilities ├── CreateTrustedCertificate.bat ├── Get-ProcessId │ └── Get-ProcessId.psm1 ├── Get-Rekt │ └── Get-Rekt.psm1 ├── Reload-Module │ └── Reload-Module.psm1 ├── Rename-ChildItemsToAsciiRecursively │ └── Rename-ChildItemsToAsciiRecursively.psm1 ├── Set-FileContent │ └── Set-FileContent.psm1 ├── Test-Url │ └── Test-Url.psm1 └── Test-VSProjectConsistency │ └── Test-VSProjectConsistency.psm1 └── renovate.json5 /.codespellrc: -------------------------------------------------------------------------------- 1 | [codespell] 2 | ignore-words-list += , pullRequest 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/initialize/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/.github/actions/initialize/action.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/create-jira-issues-for-community-activities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/.github/workflows/create-jira-issues-for-community-activities.yml -------------------------------------------------------------------------------- /.github/workflows/static-code-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/.github/workflows/static-code-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/validate-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/.github/workflows/validate-pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /AddPathToPSModulePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/AddPathToPSModulePath.ps1 -------------------------------------------------------------------------------- /Azure/Copy-ToAzureDevelopmentStorage/Copy-ToAzureDevelopmentStorage.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Azure/Copy-ToAzureDevelopmentStorage/Copy-ToAzureDevelopmentStorage.psm1 -------------------------------------------------------------------------------- /Azure/Start-Azurite/Start-Azurite.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Azure/Start-Azurite/Start-Azurite.psm1 -------------------------------------------------------------------------------- /DotNetCLI/Get-VisualStudioProjectNuGetPackage/Get-VisualStudioProjectNuGetPackage.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/DotNetCLI/Get-VisualStudioProjectNuGetPackage/Get-VisualStudioProjectNuGetPackage.psm1 -------------------------------------------------------------------------------- /DotNetCLI/Get-VisualStudioSolutionProjectPath/Get-VisualStudioSolutionProjectPath.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/DotNetCLI/Get-VisualStudioSolutionProjectPath/Get-VisualStudioSolutionProjectPath.psm1 -------------------------------------------------------------------------------- /DotNetCLI/Update-DotNetDevelopmentCertificateHttps/Update-DotNetDevelopmentCertificateHttps.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/DotNetCLI/Update-DotNetDevelopmentCertificateHttps/Update-DotNetDevelopmentCertificateHttps.psm1 -------------------------------------------------------------------------------- /DotNetCLI/Update-VisualStudioSolutionNuGetPackages/Update-VisualStudioSolutionNuGetPackages.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/DotNetCLI/Update-VisualStudioSolutionNuGetPackages/Update-VisualStudioSolutionNuGetPackages.psm1 -------------------------------------------------------------------------------- /Ftp/Get-FtpDirectory/Get-FtpDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Ftp/Get-FtpDirectory/Get-FtpDirectory.psm1 -------------------------------------------------------------------------------- /Ftp/Get-FtpFile/Get-FtpFile.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Ftp/Get-FtpFile/Get-FtpFile.psm1 -------------------------------------------------------------------------------- /Ftp/New-FtpDirectory/New-FtpDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Ftp/New-FtpDirectory/New-FtpDirectory.psm1 -------------------------------------------------------------------------------- /Ftp/Remove-FtpDirectory/Remove-FtpDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Ftp/Remove-FtpDirectory/Remove-FtpDirectory.psm1 -------------------------------------------------------------------------------- /Ftp/Rename-FtpDirectory/Rename-FtpDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Ftp/Rename-FtpDirectory/Rename-FtpDirectory.psm1 -------------------------------------------------------------------------------- /GitHub/Get-GitHubPullRequest/Get-GitHubPullRequest.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/GitHub/Get-GitHubPullRequest/Get-GitHubPullRequest.psm1 -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/License.md -------------------------------------------------------------------------------- /Orchard1/Reset-AppDataFolder/Reset-AppDataFolder.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Orchard1/Reset-AppDataFolder/Reset-AppDataFolder.psm1 -------------------------------------------------------------------------------- /Orchard1/Restart-Site/Restart-Site.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Orchard1/Restart-Site/Restart-Site.psm1 -------------------------------------------------------------------------------- /OrchardCore/Initialize-OrchardCoreSolution/.gitignore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/OrchardCore/Initialize-OrchardCoreSolution/.gitignore.template -------------------------------------------------------------------------------- /OrchardCore/Initialize-OrchardCoreSolution/Initialize-OrchardCoreSolution.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/OrchardCore/Initialize-OrchardCoreSolution/Initialize-OrchardCoreSolution.psd1 -------------------------------------------------------------------------------- /OrchardCore/Initialize-OrchardCoreSolution/Initialize-OrchardCoreSolution.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/OrchardCore/Initialize-OrchardCoreSolution/Initialize-OrchardCoreSolution.psm1 -------------------------------------------------------------------------------- /OrchardCore/Reset-OrchardCoreApp/Reset-OrchardCoreApp.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/OrchardCore/Reset-OrchardCoreApp/Reset-OrchardCoreApp.psm1 -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Readme.md -------------------------------------------------------------------------------- /ReloadEveryModuleInPSModulePaths.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/ReloadEveryModuleInPSModulePaths.ps1 -------------------------------------------------------------------------------- /SourceControl/ArchiveLastCommitToFolder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/SourceControl/ArchiveLastCommitToFolder.bat -------------------------------------------------------------------------------- /SourceControl/ExportLastCommitToAnotherHgRepo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/SourceControl/ExportLastCommitToAnotherHgRepo.bat -------------------------------------------------------------------------------- /SourceControl/ExportLastCommitToGit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/SourceControl/ExportLastCommitToGit.bat -------------------------------------------------------------------------------- /SqlServer/Get-DefaultSqlServerName/Get-DefaultSqlServerName.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/SqlServer/Get-DefaultSqlServerName/Get-DefaultSqlServerName.psm1 -------------------------------------------------------------------------------- /SqlServer/Import-BacpacToSqlServer/Import-BacpacToSqlServer.docker.edit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/SqlServer/Import-BacpacToSqlServer/Import-BacpacToSqlServer.docker.edit.reg -------------------------------------------------------------------------------- /SqlServer/Import-BacpacToSqlServer/Import-BacpacToSqlServer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/SqlServer/Import-BacpacToSqlServer/Import-BacpacToSqlServer.psm1 -------------------------------------------------------------------------------- /SqlServer/Import-BacpacToSqlServer/Import-BacpacToSqlServer.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/SqlServer/Import-BacpacToSqlServer/Import-BacpacToSqlServer.reg -------------------------------------------------------------------------------- /SqlServer/New-SqlServerConnection/New-SqlServerConnection.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/SqlServer/New-SqlServerConnection/New-SqlServerConnection.psm1 -------------------------------------------------------------------------------- /SqlServer/New-SqlServerDatabase/New-SqlServerDatabase.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/SqlServer/New-SqlServerDatabase/New-SqlServerDatabase.psm1 -------------------------------------------------------------------------------- /SqlServer/Test-SqlServer/Test-SqlServer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/SqlServer/Test-SqlServer/Test-SqlServer.psm1 -------------------------------------------------------------------------------- /SqlServer/Test-SqlServerDatabase/Test-SqlServerDatabase.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/SqlServer/Test-SqlServerDatabase/Test-SqlServerDatabase.psm1 -------------------------------------------------------------------------------- /Utilities/CreateTrustedCertificate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Utilities/CreateTrustedCertificate.bat -------------------------------------------------------------------------------- /Utilities/Get-ProcessId/Get-ProcessId.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Utilities/Get-ProcessId/Get-ProcessId.psm1 -------------------------------------------------------------------------------- /Utilities/Get-Rekt/Get-Rekt.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Utilities/Get-Rekt/Get-Rekt.psm1 -------------------------------------------------------------------------------- /Utilities/Reload-Module/Reload-Module.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Utilities/Reload-Module/Reload-Module.psm1 -------------------------------------------------------------------------------- /Utilities/Rename-ChildItemsToAsciiRecursively/Rename-ChildItemsToAsciiRecursively.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Utilities/Rename-ChildItemsToAsciiRecursively/Rename-ChildItemsToAsciiRecursively.psm1 -------------------------------------------------------------------------------- /Utilities/Set-FileContent/Set-FileContent.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Utilities/Set-FileContent/Set-FileContent.psm1 -------------------------------------------------------------------------------- /Utilities/Test-Url/Test-Url.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Utilities/Test-Url/Test-Url.psm1 -------------------------------------------------------------------------------- /Utilities/Test-VSProjectConsistency/Test-VSProjectConsistency.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/Utilities/Test-VSProjectConsistency/Test-VSProjectConsistency.psm1 -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lombiq/Utility-Scripts/HEAD/renovate.json5 --------------------------------------------------------------------------------