├── .gitignore ├── Documentation ├── Function │ ├── Add-TrustedHost.README.md │ ├── Clear-ARPCache.README.md │ ├── Convert-IPv4Address.README.md │ ├── Convert-Subnetmask.README.md │ ├── ConvertFrom-Base64.README.md │ ├── ConvertTo-Base64.README.md │ ├── Find-StringInFile.README.md │ ├── Get-ARPCache.README.md │ ├── Get-ConsoleColor.README.md │ ├── Get-IPv4Subnet.README.md │ ├── Get-InstalledSoftware.README.md │ ├── Get-LastBootTime.README.md │ ├── Get-MACAddress.README.md │ ├── Get-MACVendor.README.md │ ├── Get-RandomPIN.README.md │ ├── Get-RandomPassword.README.md │ ├── Get-TrustedHost.README.md │ ├── Get-WLANProfile.README.md │ ├── Get-WindowsProductKey.README.md │ ├── Images │ │ ├── Add-TrustedHost.png │ │ ├── Clear-ARPCache.png │ │ ├── Convert-IPv4Address.png │ │ ├── Convert-Subnetmask.png │ │ ├── ConvertFrom-Base64.png │ │ ├── ConvertTo-Base64.png │ │ ├── Find-StringInFile.png │ │ ├── Get-ARPCache.png │ │ ├── Get-ConsoleColor.png │ │ ├── Get-IPv4Subnet.png │ │ ├── Get-InstalledSoftware.png │ │ ├── Get-LastBootTime.png │ │ ├── Get-MACAddress.png │ │ ├── Get-MACVendor.png │ │ ├── Get-RandomPIN.png │ │ ├── Get-RandomPassword.png │ │ ├── Get-TrustedHost.png │ │ ├── Get-WLANProfile.png │ │ ├── Get-WindowsProductKey.png │ │ ├── Invoke-IPv4NetworkScan.png │ │ ├── Invoke-IPv4NetworkScan_CPUusage.png │ │ ├── Invoke-IPv4PortScan.png │ │ ├── Invoke-IPv4PortScan_CPUusage.png │ │ ├── Remove-TrustedHost.png │ │ ├── Send-WakeOnLan.png │ │ ├── Set-TrustedHost.png │ │ ├── Split-IPv4Subnet.png │ │ ├── Test-IsFileBinary.png │ │ └── Update-StringInFile.png │ ├── Invoke-IPv4NetworkScan.README.md │ ├── Invoke-IPv4PortScan.README.md │ ├── Remove-TrustedHost.README.md │ ├── Send-WakeOnLan.README.md │ ├── Set-TrustedHost.README.md │ ├── Split-IPv4Subnet.README.md │ ├── Test-IsFileBinary.README.md │ └── Update-StringInFile.README.md └── Script │ ├── Convert-ROT13.README.md │ ├── Convert-ROT47.README.md │ ├── Images │ ├── Convert-ROT13.png │ ├── Convert-ROT47.png │ └── OptimizePowerShellStartup.png │ └── OptimizePowerShellStartup.README.md ├── LICENSE ├── Module └── LazyAdmin │ ├── Functions │ ├── File │ │ ├── Find-StringInFile.ps1 │ │ ├── Test-IsFileBinary.ps1 │ │ └── Update-StringInFile.ps1 │ ├── Network │ │ ├── Clear-ARPCache.ps1 │ │ ├── Convert-IPv4Address.ps1 │ │ ├── Convert-Subnetmask.ps1 │ │ ├── Get-ARPCache.ps1 │ │ ├── Get-IPv4Subnet.ps1 │ │ ├── Get-MACAddress.ps1 │ │ ├── Get-MACVendor.ps1 │ │ ├── Get-WLANProfile.ps1 │ │ ├── Invoke-IPv4NetworkScan.ps1 │ │ ├── Invoke-IPv4PortScan.ps1 │ │ ├── Resources │ │ │ ├── IANA_ServiceName_and_TransportProtocolPortNumber_Registry.xml │ │ │ └── IEEE_Standards_Registration_Authority.csv │ │ ├── Send-WakeOnLan.ps1 │ │ └── Split-IPv4Subnet.ps1 │ ├── Other │ │ └── Get-ConsoleColor.ps1 │ ├── Security │ │ ├── ConvertFrom-Base64.ps1 │ │ ├── ConvertTo-Base64.ps1 │ │ ├── Get-RandomPIN.ps1 │ │ └── Get-RandomPassword.ps1 │ ├── Software │ │ └── Get-InstalledSoftware.ps1 │ ├── TrustedHost │ │ ├── Add-TrustedHost.ps1 │ │ ├── Get-TrustedHost.ps1 │ │ ├── Remove-TrustedHost.ps1 │ │ └── Set-TrustedHost.ps1 │ └── Windows │ │ ├── Get-LastBootTime.ps1 │ │ └── Get-WindowsProductKey.ps1 │ ├── LazyAdmin.psd1 │ └── LazyAdmin.psm1 ├── README.md ├── Regex ├── IPv4Address.ps1 ├── MACAddress.ps1 └── Subnetmask.ps1 ├── Scripts ├── Convert-ROT13.ps1 ├── Convert-ROT47.ps1 └── OptimizePowerShellStartup.ps1 ├── Snippets ├── ConnectToExchange2010.ps1 ├── CredentialParameter.ps1 ├── DefaultDisplayPropertySet.ps1 ├── New-Object.ps1 ├── PSCustomObject.ps1 ├── PressAnyKeyToContinue.ps1 ├── PromptForChoice.ps1 ├── RewriteInLine.ps1 ├── SelfElevatingScript.ps1 └── Send-MailMessage.ps1 └── Templates ├── Default.README.md ├── Default.ps1 ├── RunspacePool.ps1 └── ScheduledTask_Logging.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | Documentation/Images/Thumbs.db -------------------------------------------------------------------------------- /Documentation/Function/Add-TrustedHost.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Add-TrustedHost.README.md -------------------------------------------------------------------------------- /Documentation/Function/Clear-ARPCache.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Clear-ARPCache.README.md -------------------------------------------------------------------------------- /Documentation/Function/Convert-IPv4Address.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Convert-IPv4Address.README.md -------------------------------------------------------------------------------- /Documentation/Function/Convert-Subnetmask.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Convert-Subnetmask.README.md -------------------------------------------------------------------------------- /Documentation/Function/ConvertFrom-Base64.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/ConvertFrom-Base64.README.md -------------------------------------------------------------------------------- /Documentation/Function/ConvertTo-Base64.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/ConvertTo-Base64.README.md -------------------------------------------------------------------------------- /Documentation/Function/Find-StringInFile.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Find-StringInFile.README.md -------------------------------------------------------------------------------- /Documentation/Function/Get-ARPCache.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Get-ARPCache.README.md -------------------------------------------------------------------------------- /Documentation/Function/Get-ConsoleColor.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Get-ConsoleColor.README.md -------------------------------------------------------------------------------- /Documentation/Function/Get-IPv4Subnet.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Get-IPv4Subnet.README.md -------------------------------------------------------------------------------- /Documentation/Function/Get-InstalledSoftware.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Get-InstalledSoftware.README.md -------------------------------------------------------------------------------- /Documentation/Function/Get-LastBootTime.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Get-LastBootTime.README.md -------------------------------------------------------------------------------- /Documentation/Function/Get-MACAddress.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Get-MACAddress.README.md -------------------------------------------------------------------------------- /Documentation/Function/Get-MACVendor.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Get-MACVendor.README.md -------------------------------------------------------------------------------- /Documentation/Function/Get-RandomPIN.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Get-RandomPIN.README.md -------------------------------------------------------------------------------- /Documentation/Function/Get-RandomPassword.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Get-RandomPassword.README.md -------------------------------------------------------------------------------- /Documentation/Function/Get-TrustedHost.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Get-TrustedHost.README.md -------------------------------------------------------------------------------- /Documentation/Function/Get-WLANProfile.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Get-WLANProfile.README.md -------------------------------------------------------------------------------- /Documentation/Function/Get-WindowsProductKey.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Get-WindowsProductKey.README.md -------------------------------------------------------------------------------- /Documentation/Function/Images/Add-TrustedHost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Add-TrustedHost.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Clear-ARPCache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Clear-ARPCache.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Convert-IPv4Address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Convert-IPv4Address.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Convert-Subnetmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Convert-Subnetmask.png -------------------------------------------------------------------------------- /Documentation/Function/Images/ConvertFrom-Base64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/ConvertFrom-Base64.png -------------------------------------------------------------------------------- /Documentation/Function/Images/ConvertTo-Base64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/ConvertTo-Base64.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Find-StringInFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Find-StringInFile.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Get-ARPCache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Get-ARPCache.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Get-ConsoleColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Get-ConsoleColor.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Get-IPv4Subnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Get-IPv4Subnet.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Get-InstalledSoftware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Get-InstalledSoftware.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Get-LastBootTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Get-LastBootTime.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Get-MACAddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Get-MACAddress.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Get-MACVendor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Get-MACVendor.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Get-RandomPIN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Get-RandomPIN.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Get-RandomPassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Get-RandomPassword.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Get-TrustedHost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Get-TrustedHost.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Get-WLANProfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Get-WLANProfile.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Get-WindowsProductKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Get-WindowsProductKey.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Invoke-IPv4NetworkScan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Invoke-IPv4NetworkScan.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Invoke-IPv4NetworkScan_CPUusage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Invoke-IPv4NetworkScan_CPUusage.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Invoke-IPv4PortScan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Invoke-IPv4PortScan.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Invoke-IPv4PortScan_CPUusage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Invoke-IPv4PortScan_CPUusage.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Remove-TrustedHost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Remove-TrustedHost.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Send-WakeOnLan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Send-WakeOnLan.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Set-TrustedHost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Set-TrustedHost.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Split-IPv4Subnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Split-IPv4Subnet.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Test-IsFileBinary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Test-IsFileBinary.png -------------------------------------------------------------------------------- /Documentation/Function/Images/Update-StringInFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Images/Update-StringInFile.png -------------------------------------------------------------------------------- /Documentation/Function/Invoke-IPv4NetworkScan.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Invoke-IPv4NetworkScan.README.md -------------------------------------------------------------------------------- /Documentation/Function/Invoke-IPv4PortScan.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Invoke-IPv4PortScan.README.md -------------------------------------------------------------------------------- /Documentation/Function/Remove-TrustedHost.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Remove-TrustedHost.README.md -------------------------------------------------------------------------------- /Documentation/Function/Send-WakeOnLan.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Send-WakeOnLan.README.md -------------------------------------------------------------------------------- /Documentation/Function/Set-TrustedHost.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Set-TrustedHost.README.md -------------------------------------------------------------------------------- /Documentation/Function/Split-IPv4Subnet.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Split-IPv4Subnet.README.md -------------------------------------------------------------------------------- /Documentation/Function/Test-IsFileBinary.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Test-IsFileBinary.README.md -------------------------------------------------------------------------------- /Documentation/Function/Update-StringInFile.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Function/Update-StringInFile.README.md -------------------------------------------------------------------------------- /Documentation/Script/Convert-ROT13.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Script/Convert-ROT13.README.md -------------------------------------------------------------------------------- /Documentation/Script/Convert-ROT47.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Script/Convert-ROT47.README.md -------------------------------------------------------------------------------- /Documentation/Script/Images/Convert-ROT13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Script/Images/Convert-ROT13.png -------------------------------------------------------------------------------- /Documentation/Script/Images/Convert-ROT47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Script/Images/Convert-ROT47.png -------------------------------------------------------------------------------- /Documentation/Script/Images/OptimizePowerShellStartup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Script/Images/OptimizePowerShellStartup.png -------------------------------------------------------------------------------- /Documentation/Script/OptimizePowerShellStartup.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Documentation/Script/OptimizePowerShellStartup.README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/LICENSE -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/File/Find-StringInFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/File/Find-StringInFile.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/File/Test-IsFileBinary.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/File/Test-IsFileBinary.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/File/Update-StringInFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/File/Update-StringInFile.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Clear-ARPCache.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Clear-ARPCache.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Convert-IPv4Address.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Convert-IPv4Address.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Convert-Subnetmask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Convert-Subnetmask.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Get-ARPCache.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Get-ARPCache.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Get-IPv4Subnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Get-IPv4Subnet.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Get-MACAddress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Get-MACAddress.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Get-MACVendor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Get-MACVendor.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Get-WLANProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Get-WLANProfile.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Invoke-IPv4NetworkScan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Invoke-IPv4NetworkScan.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Invoke-IPv4PortScan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Invoke-IPv4PortScan.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Resources/IANA_ServiceName_and_TransportProtocolPortNumber_Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Resources/IANA_ServiceName_and_TransportProtocolPortNumber_Registry.xml -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Resources/IEEE_Standards_Registration_Authority.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Resources/IEEE_Standards_Registration_Authority.csv -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Send-WakeOnLan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Send-WakeOnLan.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Network/Split-IPv4Subnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Network/Split-IPv4Subnet.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Other/Get-ConsoleColor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Other/Get-ConsoleColor.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Security/ConvertFrom-Base64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Security/ConvertFrom-Base64.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Security/ConvertTo-Base64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Security/ConvertTo-Base64.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Security/Get-RandomPIN.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Security/Get-RandomPIN.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Security/Get-RandomPassword.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Security/Get-RandomPassword.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Software/Get-InstalledSoftware.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Software/Get-InstalledSoftware.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/TrustedHost/Add-TrustedHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/TrustedHost/Add-TrustedHost.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/TrustedHost/Get-TrustedHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/TrustedHost/Get-TrustedHost.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/TrustedHost/Remove-TrustedHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/TrustedHost/Remove-TrustedHost.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/TrustedHost/Set-TrustedHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/TrustedHost/Set-TrustedHost.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Windows/Get-LastBootTime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Windows/Get-LastBootTime.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/Functions/Windows/Get-WindowsProductKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/Functions/Windows/Get-WindowsProductKey.ps1 -------------------------------------------------------------------------------- /Module/LazyAdmin/LazyAdmin.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/LazyAdmin.psd1 -------------------------------------------------------------------------------- /Module/LazyAdmin/LazyAdmin.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Module/LazyAdmin/LazyAdmin.psm1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/README.md -------------------------------------------------------------------------------- /Regex/IPv4Address.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Regex/IPv4Address.ps1 -------------------------------------------------------------------------------- /Regex/MACAddress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Regex/MACAddress.ps1 -------------------------------------------------------------------------------- /Regex/Subnetmask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Regex/Subnetmask.ps1 -------------------------------------------------------------------------------- /Scripts/Convert-ROT13.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Scripts/Convert-ROT13.ps1 -------------------------------------------------------------------------------- /Scripts/Convert-ROT47.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Scripts/Convert-ROT47.ps1 -------------------------------------------------------------------------------- /Scripts/OptimizePowerShellStartup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Scripts/OptimizePowerShellStartup.ps1 -------------------------------------------------------------------------------- /Snippets/ConnectToExchange2010.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Snippets/ConnectToExchange2010.ps1 -------------------------------------------------------------------------------- /Snippets/CredentialParameter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Snippets/CredentialParameter.ps1 -------------------------------------------------------------------------------- /Snippets/DefaultDisplayPropertySet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Snippets/DefaultDisplayPropertySet.ps1 -------------------------------------------------------------------------------- /Snippets/New-Object.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Snippets/New-Object.ps1 -------------------------------------------------------------------------------- /Snippets/PSCustomObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Snippets/PSCustomObject.ps1 -------------------------------------------------------------------------------- /Snippets/PressAnyKeyToContinue.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Snippets/PressAnyKeyToContinue.ps1 -------------------------------------------------------------------------------- /Snippets/PromptForChoice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Snippets/PromptForChoice.ps1 -------------------------------------------------------------------------------- /Snippets/RewriteInLine.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Snippets/RewriteInLine.ps1 -------------------------------------------------------------------------------- /Snippets/SelfElevatingScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Snippets/SelfElevatingScript.ps1 -------------------------------------------------------------------------------- /Snippets/Send-MailMessage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Snippets/Send-MailMessage.ps1 -------------------------------------------------------------------------------- /Templates/Default.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Templates/Default.README.md -------------------------------------------------------------------------------- /Templates/Default.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Templates/Default.ps1 -------------------------------------------------------------------------------- /Templates/RunspacePool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Templates/RunspacePool.ps1 -------------------------------------------------------------------------------- /Templates/ScheduledTask_Logging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BornToBeRoot/PowerShell/HEAD/Templates/ScheduledTask_Logging.ps1 --------------------------------------------------------------------------------