https://gist.github.com/cjfarrelly/1c1609913b1de1d602c2
https://gist.github.com/kenpb/0ba0108d4ef0225e540a
https://gist.github.com/sdovnic/e0121316734049e59ef3
https://github.com/lukegackle/PowerShell-Self-Elevate-Keeping-Current-Directory
https://gist.github.com/tonylea/c19107d92412e724650eeb1e1edb24fb
https://gist.github.com/vivek1986/af1f8e68396923bd0ecc781bd6b3b923
https://gist.github.com/vivek1986/9f7d8a16bf34a9e14cd4776485209c2f
Last active
October 24, 2023 21:23
-
-
Save vivek1986/9f7d8a16bf34a9e14cd4776485209c2f to your computer and use it in GitHub Desktop.
Take Control of some Folders like ProgramFiles
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
$Loc = Get-Location | |
"Security.Principal.Windows" | % { IEX "( [ $_`Principal ] [$_`Identity ]::GetCurrent() ).IsInRole( 'Administrator' )" } | ? { | |
$True | % { $Arguments = @('-NoProfile','-ExecutionPolicy Bypass','-NoExit','-File',"`"$($MyInvocation.MyCommand.Path)`"","\`"$Loc\`""); | |
Start-Process -FilePath PowerShell.exe -Verb RunAs -ArgumentList $Arguments; } } | |
(Get-Location).ToString() | |
### Elevated code begins | |
$Env:UserName,$Env:UserDomain,$Env:ComputerName | |
$Path = "$ENV:PROGRAMFILES\Sublime Text" | |
$ACL = Get-ACL -Path $Path | |
$AccessRule = New-Object System.Security.AccessControl.FileSystemAccessRule("$Env:UserName","FullControl","Allow") | |
$ACL.SetAccessRule($AccessRule) | |
$ACL | Set-Acl -Path $Path | |
(Get-ACL -Path $Path).Access | Format-Table IdentityReference,FileSystemRights,AccessControlType,IsInherited,InheritanceFlags -AutoSize | |
Read-Host | |
### Elevated code ends |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment