Google Transfer

Go to https://admin.google.com/TransferToken. Sign in with your G Suite Administrator username and password. Enter C01x1hvgo as the Reseller Identifier. Click on Generate a Token. Copy the token’s alphanumeric code and send that to us Irfan Anis

Read More

add bulk local users using csv and power shell

First row of csv must be user,pass $strComputer=$env:computername $csv = Import-CSV ./users.csv ForEach ($user in $csv ){ Create the user account and assign a default password $objOU = [adsi]”WinNT://.”$objUser = $objOU.Create(“User”, $user.user)$objuser.setPassword($user.pass)$objuser.setinfo() Enable [PasswordNeverExpires] Set-LocalUser -Name $user.user -PasswordNeverExpires:$true Add the User account to the local users Group $computer = [ADSI](“WinNT://” + $strComputer + “,computer”)$group = […]

Read More

CyberPanel

You can use this format to run your PHP scripts /usr/local/lsws/lsphp74/bin/php /path/to/your.php Replace lsphp74 with lsphp73 or any other version you need How to Change CLI PHP on CyberPanel How to Change CLI PHP on CyberPanel? Posted April 9, 2021 Updated April 9, 2021 By Usman CyberPanel only install LiteSpeed PHPs from LiteSpeed repos. Installation […]

Read More

Debian

Set a fully qualified domain name (FQDN) hostname on your server No matter your server is a testing machine or production server, it’s strongly recommended to set a fully qualified domain name (FQDN) hostname. Enter command hostname -f to view the current hostname: On Debian/Ubuntu Linux, hostname is set in two files: /etc/hostname and /etc/hosts. […]

Read More

Hetzner

Installing without KVM Activate Rescue System Tutorial URL: https://community.hetzner.com/tutorials/install-windows apt update && apt install qemu-kvm Download and extract the portable qemu-kvm. /tmp folder is enough for this portable qemu-kvm. wget -qO- /tmp https://nc01.itserver.biz/index.php/s/SPNZJapRYdzLiyc/download/vkvm.tar.gz | tar xvz -C /tmp You need to download the UEFI bios also to support more than 2TB partition. wget -qO- /tmp […]

Read More

Next Cloud

Enable the HTTP/2 module Enable your sites The configuration for this will be found in /etc/apache2/sites-enabled/000-default-le-ssl.conf. Note: All sites in which you’ve enabled HTTPS, via Let’s Encrypt, will end with le-ssl.conf. and add the following tag after the <VirtualHost *.443> directive tag: Protocols h2 http:/1.1 Save and close that file. Restart Apache2 with the command […]

Read More

pfsense

server: local-data: “*kerberos.*tcp.example.com 3600 IN SRV 0 100 88 dc1.example.com” local-data: “*kerberos.*udp.example.com 3600 IN SRV 0 100 88 dc1.example.com” Irfan Anis

Read More