πAdvanced
Advanced Commands
Imports
import ".\anotherfile.ps1";
# or,
import(".\anotherfile.ps1");Encrypting and Decrypting data
$key = dotaes; # you can just use `$key = "YOUR_KEY_HERE"`
$key; # optional, displays encrypting key
$unencryptedString = "blahblahblah";
# Encrypting
$encryptedString = EncryptData $key $unencryptedString;
# Decrypting
$backToPlainText = DecryptData $key $encryptedString;Asynchronous Command Execution
Executing Commands on an other PC
Monitoring Processes
Run As Admin/User
Schedule commands
Get Current OS
Amazing TUIs
Sort Arrays
Get User Input Key
dotsharp
Last updated