Skip to content

Instantly share code, notes, and snippets.

View Noxsios's full-sized avatar

razzle Noxsios

View GitHub Profile
@Noxsios
Noxsios / Get-WiFiProfiles.ps1
Last active September 25, 2023 22:40
Get-WiFi-Profiles using netsh and store in a TOML file for easy reading.
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()
@Noxsios
Noxsios / Set-IP-GUI.ps1
Last active March 26, 2022 22:25
PowerShell GUI for IP Address Management
#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
#>
@Noxsios
Noxsios / setipcmd.bat
Last active September 13, 2020 13:26
Batch file to change computer IP
@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