DFS wont start after update.

DFS sometimes will give you an error after update: Error 1068: The dependency service or group failed to start. Some windows updates will automatically disable Remote Registry service, enabling this service will let you enable DFS service.

Custom Counter

Add the following HTML for counter objects: [code language=”html”] <div id="counternumber"></div> <div id="counterstart"></div> [/code] Add the following CSS: [code language=”css”] #counternumber {...

Helpful Docker Commands

List all docker containers: [shell]docker ps -a[/shell] List docker container names: [shell]docker ps –format "{{.Names}}"[/shell] List docker images names: [shell]docker images -a[/shell] Stop all running containers: [shell]docker stop $(docker ps...

Create Local User – Powershell

Get Local Users: get-localuser Create Local User: $Password = Read-Host -AsSecureString New-LocalUser “NEW_ACCOUNT_NAME” -Password $Password -FullName “USER_FULL_NAME” -Description “Description of this account.” Add to Group:...

Enable Remote Admin (non-Domain)

Add computer to ETC/Hosts Management Host Get authentication server allow values. [powershell](Get-Item wsman:localhost\client\trustedhosts).value[/powershell] Note: This command is needed if you want to fix Kerberos authentication errors. [powershell]Set-Item...

Create Domain User – Powershell

Create new Domain User: New-ADUser -SAMAccountName “testuser” -DisplayName “Test User” -AccountPassword (ConvertTo-SecureString -AsPlainText “testpassword” -Force) Force Change Password on Logon: Set-ADUser -Identity...

How to install Active Directory in Windows Core

Install Domain Services install-windowsfeature AD-Domain-Services The -WhatIf command allows a preview of the Powershell command before execution. Remove after testing. Install a Forest Active Directory Install-ADDSForest -CreateDnsDelegation:$false -DatabasePath...

Fortigate login with RADIUS Authentication

Prerequisite: Install NPS Client on a Windows Server. Setup NPS Radius Client and create a Shared Secret and keep this key for later. Create a new Connection Request Policy. In the Conditions tab add the IPv4  address of the firewall. In the Settings tab add...

Steps to move SendSuite Live to new SQL Server

If a database move is needed for SendSuite® Live, please contact software support for assistance. The complete installation will be reviewed for complexity and depending on the results, the work may be performed by the software support desk or a Change Request may be...

HyperV Core SSL Replication without GUI

Created a bonded NIC (optional): [shell] Get-NetAdapter New-NetLbfoTeam "NIC Team" –TeamingMode SwitchIndependent [/shell] If you need to add a VLAN: [shell] Add-NetLbfoTeamNic -Team "Lan Team" -vLanID 10 -Name "Management VLAN" [/shell]...