This file contains 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
To make Pageant automatically run and load keys at startup: | |
- Find the location of pageant.exe | |
- Windows key + R to open the 'run' dialog box | |
- Type: 'shell:startup' in the dialog box | |
- Create a shortcut to the pageant.exe and put into this startup folder. |
This file contains 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
$fileName = "_2-DO_log.txt" | |
$max = 20 | |
$encoding = "ASCII" | |
# remove previous file if exists | |
if(Test-Path $fileName) { Remove-Item $fileName } | |
# dump 2-do report to the file system | |
Get-ChildItem –rec –include *.config,*.cs,*.js,*.cshtml,*.css,*.aspx | | |
where { $_ -notmatch 'lib' } | |