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
# Warning | |
Clear-Host | |
Write-Output "Run this script on the computer you want to access via RDP" | |
Write-Output "" | |
# Ask | |
Write-Output "Remote address can be an IP address or network with CIDR" | |
Write-Output "Example: 192.168.0.5 or 192.168.0.0/24" | |
Write-Output "" | |
$RemoteAddress = Read-Host "Remote Address" |
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
<# | |
.SYNOPSIS | |
This script can bypass User Access Control (UAC) via fodhelper.exe | |
It creates a new registry structure in: "HKCU:\Software\Classes\ms-settings\" to perform UAC bypass and starts | |
an elevated command prompt. | |
.NOTES | |
Function : FodhelperUACBypass | |
File Name : FodhelperUACBypass.ps1 |