Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

194 total results found

Workstation Service Does Not Start

Microsoft Windows Windows General

This should fix the issue of the Workstation service that does not start. Both WS-D1.cmd and WS-D2.cmd are in the attachments for this article. WS-D1.cmd sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi sc.exe config mrxsmb10 start= dis...

Microsoft Windows

Windows 10 Apps Crashing

Microsoft Windows Windows General

Things to try if the Microsoft apps in Windows 10 keep crashing on startup. These commands are run from and elevated PowerShell Along with these commands you should terminate the RuntimeBroker.exe process. Sometimes this is all it takes for the apps to start...

Microsoft Windows

Restore Windows Photo Viewer

Microsoft Windows Windows General

The attached file (Restore_Windows_Photo_Viewer.reg) is a registry file to restore the settings for Windows Photo Viewer Merge into the Registry with an Administrative account.

Microsoft Windows

Time Sync Settings

Windows Command Line

This article gives the commands to set the Time Authority and runs a sync for the Windows Clock To be executed in Powershell or Command Prompt Check current time and date get-date -format "{dd-MMM-yyyy HH:mm}"   Update Time Sync Server Method 1 w32tm /c...

Microsoft Windows
Windows Command Line

Task Manager not showing user processes

Microsoft Windows Windows General

From Regedit, delete all properties in HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\TaskManager

Microsoft Windows

Scheduled Tasks - Reboot machine One Time

Windows Command Line

From an elevated Command Line schtasks /create /TN "Reboot Machine" /TR "C:\Windows\System32\shutdown.exe -r -t 1" /SC ONCE /ST 21:15

Windows Command Line
Microsoft Windows

Factory Reset Unifi AP

Ubiquiti

UniFi APs have a physical reset button, usually located next to the ethernet port. Once the button is located, hold it down for 10 seconds, until the LED lights flash. Once done, the AP will reboot and then go back to factory default settings. Once completed, ...

Ubiquiti
Unifi

Microsoft Photos will not start issue

Microsoft Windows Windows General

Issue where Microsoft Photos shuts down as soon as it is started get-appxpackage *Microsoft.Windows.Photos* | remove-appxpackage Get-AppxPackage *photos* | Remove-AppxPackage Get-AppxPackage -allusers Microsoft.Windows.Photos | Foreach {Add-AppxPackage -Dis...

Microsoft Windows
PowerShell

Redirect common Windows folders (Documents, etc)

Microsoft Windows Windows General

"HKCU\Microsoft\Windows\Currentversion\Explorer\Shell Folders" REG ADD "HKCU\SOFTWARE\Microsoft\Windows\Currentversion\Explorer\Shell Folders" /v "My Music" /t REG_SZ /d "\\we-s004\users\%username%\My Documents\My Music" /f REG ADD "HKCU\Software\Microsoft...

Microsoft Windows
Windows Registry

Disable LLMNR

Windows Command Line

From and elevated Command Line REG ADD “HKLM\Software\policies\Microsoft\Windows NT\DNSClient” REG ADD “HKLM\Software\policies\Microsoft\Windows NT\DNSClient” /v ” EnableMulticast” /t REG_DWORD /d “0” /f

Microsoft Windows
Windows Command Line
Windows Registry

koda/docker-knowledge

Docker

URL https://hub.docker.com/r/koda/docker-knowledge   Where to get from  hub.docker.com

Docker

Composerize

Docker

What is it This will turn the docker run command into a Stacks statement URL https://www.composerize.com/

Docker

Password Expiration Login script vba

Microsoft Windows Windows Server

VBA Code to check for password expiry and display a message if the password expires in the next 10 days. Add-Type -AssemblyName PresentationFramework curruser=Get−ADUser−Identity env:username -Properties 'msDS-UserPasswordExpiryTimeComputed','PasswordNeve...

Microsoft Windows
Active Directory
VBA

Docker Container hostname

Docker

Add the following to a Stacks file hostname: {hostname} For a Docker Run command-h {hostname}

Docker

Change Local Computer Name

Microsoft Windows Windows General

Right click start button> choose Settings. In the search box, search for (view your PC name)> click (Rename this PC) use company standard naming for devices.

Check if a reboot is required after installing Linux updates

Linux Updates

RedHat OS family Applies to: RedHat / CentOS / Amazon Linux Don’t forget that you might need to reboot because of core library updates, at least if it is glibc. (And also, services may need to be restarted after updates). If you install the yum-utils pack...

Make elevated network drive mappings show up in Explorer

Microsoft Windows Windows General

Create a REG_DWORD named EnableLinkedConnections in HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System, set it to 1 and restart. Setting this registry value stops Windows separating network drives by elevated vs unelevated tokens, thus whenever yo...

Cheat Sheet - MySQL

MySQL

# Login in as admin/root user mysql -u admin -h my-cluster-dev.cluster-cckanhlmgu2w.eu-central-1.rds.amazonaws.com --database=customer_cms_dev -p # Create database CREATE DATABASE customer_cms_dev; # Create user and grant permissions on a database CRE...