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
| # Ensure System.Security assembly is loaded. | |
| Add-Type -AssemblyName System.Security | |
| function ConvertTo-CIPolicy { | |
| <# | |
| .SYNOPSIS | |
| Converts a binary file that contains a Code Integrity policy into XML format. | |
| Author: Matthew Graeber (@mattifestation) |
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
| New-PSDrive -Name HKCR -PSProvider Registry -Root HKEY_CLASSES_ROOT -ErrorAction SilentlyContinue | Out-Null | |
| $count = 0 | |
| try { | |
| Get-ChildItem HKCR: -ErrorAction SilentlyContinue | ForEach-Object { | |
| if((Get-ItemProperty $_.PSPath -ErrorAction SilentlyContinue).PSObject.Properties.Name -contains "URL Protocol") { | |
| $name = $_.PSChildName | |
| $count += 1 | |
| $line = "URI Handler {0:d4}: {1}" -f $count, $name | |
| Write-Host $line | |
| } |
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
| A powershell automating Word to generate Pdf |
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
| log = console.log; | |
| self.onmessage = function(e) { | |
| debugger; | |
| var data = new FormData(); | |
| data.append('Filedata', e.data.file.slice(0, 127), encodeURI(e.data.file.name)); | |
| console.log(e.data.file.slice(0, 127)); | |
| var xhr = new XMLHttpRequest(); | |
| log('worker: xhr.open'); | |
| xhr.open('POST', location.href, false); | |
| log('worker: xhr.send'); |