I hereby claim:
- I am puttyq on github.
- I am puttyq (https://keybase.io/puttyq) on keybase.
- I have a public key whose fingerprint is A952 74E6 207E 1BB5 424B 412D 1DEE C67C DD10 FE59
To claim this, I am signing this object:
<# | |
.SYNOPSIS | |
Tester - Service Status.ps1 - Tester to check the status of all PCNSSVC services on all current domain context DCs. | |
.DESCRIPTION | |
The scripts will look for all current domain context DC and query the status of the PCNSSVC service. | |
Possible status messages include: | |
- running | |
- stopped | |
- starting | |
- unreachable (the server is not avaiable on the network) |
$getdns = Get-Content .\dns.txt | |
$getdns | foreach {Resolve-DnsName -Type NS $_ | Where-Object -Property Type -EQ "NS" | Select Name, NameHost} |
$repo = "xxxx/xxxx" | |
$file = "xxxxx.msi" | |
$releases = "https://api.github.com/repos/$repo/releases" | |
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | |
$tag = (Invoke-WebRequest -Uri $releases -UseBasicParsing | ConvertFrom-Json)[0].tag_name | |
$download = "https://github.com/$repo/releases/download/$tag/$file" | |
$msi = "$name-$tag.msi" |
# Create function object | |
$getList = New-Object SAP.BAPI_USER_GETLIST | |
# Create a return object | |
$getList.USERLIST = New-Object SAP.BAPIUSNAME | |
# Execute function call | |
$getList = $proxyUser.BAPI_USER_GETLIST($getList) |
# Proxy variables | |
$username = "xxxxxxx" | |
$password = "*******" | |
$uriUserManagement = "http://servername/sap/bc/srt/wsdl/../../../../zfimconnector_user?sap-client=100" | |
$uriUserManagementClass = "SAP_WSDL" | |
$uriUserManagementNamespace = "SAP" | |
# Create secure credential | |
$secpasswd = ConvertTo-SecureString $password -AsPlainText -Force |
cls | |
# database Details | |
$dbServer = "xxxxxxx" | |
$dbDatabaseName = "xxxxxxxx" | |
$dbTable = "xxxxxxxx" | |
# loading modules | |
Import-Module SQLPs |
# Get All VPN Connections | |
Get-VpnConnection | |
# Create VPN Connection to Office L2TP | |
Add-VpnConnection -Name "Test" ` | |
-ServerAddress "xxxxxxxxxx" ` | |
-TunnelType L2TP ` | |
-L2tpPsk "xxxxxxxxxxxx" ` | |
-EncryptionLevel Optional ` | |
-AuthenticationMethod MsChapv2 ` |
# SAP proxy variables | |
$uriUserManagement = "http://sapserver/sap/bc/srt/wsdl/flv_10002A111AD1/bndg_url/sap/bc/srt/rfc/sap/zfimconnector/010/zfimconnector_user/zfimconnector_user?sap-client=010" | |
$uriUserManagementNamespace = "SAP" | |
$uriUserManagementClass = "SAP_WSDL" | |
# Create a secure credential to pass to the WS-Proxy | |
$secpasswd = ConvertTo-SecureString $password -AsPlainText -Force | |
$credential = New-Object System.Management.Automation.PSCredential ($username, $secpasswd) | |
# Create web services proxy object |
I hereby claim:
To claim this, I am signing this object: