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
if (!(Test-Path "./profiles.toml")) { | |
New-Item -ItemType File "./profiles.toml" | Out-Null | |
} | |
"#####`n[profiles]" | Out-File -Append -Encoding utf8 "./profiles.toml" | |
(netsh wlan show profiles) | | |
Select-String "\:(.+)$" | | |
ForEach-Object { | |
$name = $PSItem.Matches.Groups[1].Value.Trim() |
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
#Requires -RunAsAdministrator | |
<# | |
Script made by Noxsios | |
This script displays a GUI for rapidly / easily changing your computer's IP address | |
WARNING: ONLY RUN THIS SCRIPT ON APPROVED CONFIG LAPTOPS | |
Last update: Nov 8 2020 | |
#> |
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
@ECHO OFF | |
ECHO. | |
ECHO Choose an IP configuration option: | |
ECHO [1] Set Custom | |
ECHO [2] DHCP | |
ECHO [3] DEVICE 1 | |
ECHO [4] DEVICE 2 | |
ECHO [5] Exit | |
ECHO. | |
:choice |
NewerOlder