Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096
Dim serverName | |
serverName = InputBox("Server name to look sessions in","Server name prompt") | |
rem MsgBox(serverName) | |
Set oShell = WScript.CreateObject("WScript.shell") | |
rem qwinsta /server:server | |
Set oResult = oShell.Exec ("qwinsta /server:"&serverName) | |
strText = StrConv(oResult.StdOut.ReadAll(), "ibm866", "windows-1251") | |
Function StrConv(Text, SourceCharset, DestCharset) | |
Set Stream = CreateObject("ADODB.Stream") |
#!/bin/bash | |
#move all branches from repo1 to repo2 | |
repo1=origin | |
repo2=gogs | |
branches=$(git branch -r | grep -v $repo2 | grep -v $repo1/HEAD) | |
echo $branches | while read line ; do | |
branch=${line:${#repo1}+1} | |
git checkout $branch |