The author of the original article - https://t.me/Pryslonskyi
All rights belongs to him. Here is only .md adaptation and translation.
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
# This script will download LE intermediate CA and install it in a computer, | |
# create IKEv2 vpn connection with SplitTunneling, -DnsSuffix and -RememberCredential | |
# USAGE | |
# Open Powershell as administarton and run next line: | |
# PowerShell.exe -ExecutionPolicy Bypass -File .\addvpn.ps1 | |
# where "addvpn.ps1" is the name of this script | |
# Define the parameters for the VPN connection (change it) | |
$Name = "NAME_OF_VPN_CONNECTION" | |
$ServerAddress = "SERVER_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
# USAGE: | |
# .\createuseers.ps1 -File users.csv | |
# users.csv containing: | |
# Username,Password,FullName,Description | |
# user1,password1,Full Name 1,Description 1 | |
# user2,password2,Full Name 2,Description 2 | |
# ... |
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
# ------------------------------------------------------------------------------------------------- | |
# USAGE: | |
# open Powershell window in the directory where this script is located and paste the following string (without #) | |
# powershell -ExecutionPolicy RemoteSigned -File .\tukui-elvui-git-updater.ps1 | |
# | |
# REQUIREMENTS: | |
# - installed git and added into $PATH | |
# - cloned https://github.com/tukui-org/ElvUI repository to some directory, it is used as $SRC_DIR | |
# - change $SRC_DIR and $DST_DIR according to your setup | |
# ------------------------------------------------------------------------------------------------- |
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
# This script will download LE intermediate CA and install it in a computer, | |
# create IKEv2 vpn connection with SplitTunneling, -DnsSuffix and -RememberCredential | |
# USAGE | |
# Open Powershell as administarton and run next line: | |
# PowerShell.exe -ExecutionPolicy Bypass -File .\addvpn.ps1 | |
# where "addvpn.ps1" is the name of this script | |
# Define the parameters for the VPN connection (change it) | |
$Name = "NAME_OF_VPN_CONNECTION" | |
$ServerAddress = "SERVER_ADDRESS" |