This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <#what else has been run as this user? #>Get-Content (Get-PSReadlineOption).HistorySavePath | Set-Clipboard |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # PowerShell script to keep a Windows PC awake | |
| Write-Host "Keeping PC awake... (send Ctrl+C to quit)" | |
| while (1) { | |
| $wsh = New-Object -ComObject WScript.Shell | |
| $wsh.SendKeys('+{F15}') | |
| Start-Sleep -seconds 59 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This file should only include settings that affect the physical contents of the file, not just how it appears in an editor. | |
| # Do not include personal preference presentation settings like a tab's `indent_size` in this file; those should be specified | |
| # in a parent .editorconfig file outside of the repository. | |
| # v1.9 | |
| # Ensure that personal preference presentation settings can be inherited from parent .editorconfig files. | |
| root = false | |
| #### Core EditorConfig Options #### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :setvar SSISDB_NAME "SSISDb" | |
| USE $(SSISDB_NAME) | |
| SET NOCOUNT ON | |
| SET XACT_ABORT ON | |
| BEGIN TRANSACTION | |