-
Recent Posts
Archives
- December 2019
- November 2019
- July 2019
- June 2019
- February 2019
- March 2018
- March 2017
- November 2016
- September 2016
- December 2015
- November 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- February 2013
- January 2013
- August 2012
- July 2012
- June 2012
- May 2012
- December 2011
- October 2011
- September 2011
Categories
Meta
Category Archives: Uncategorized
Citrix ADC (Netscaler) Backend Server Authentication
Citrix ADC does not authenticate the backend server certificate by default. This can be enabled in the Service or the Service Group. Go to Load Balancing – Serivce/Service Group To the left, click SSL Parameters Check Enable Server Authentication and … Continue reading
Posted in Uncategorized
Comments Off on Citrix ADC (Netscaler) Backend Server Authentication
Change Clock format on Windows 10 logon screen
Press Win+R, type intl.cpl and press Enter (Region settings) Set your different time formats and click Apply Select the “Administrative” tab, then click the “Copy settings..” button. At the bottom, check the box for “Welcome screen and system accounts”. Click the “OK” button. Done
Posted in Uncategorized, Windows
Comments Off on Change Clock format on Windows 10 logon screen
Split PFX into cert and key without password
Posted in Uncategorized
Comments Off on Split PFX into cert and key without password
Set Powershell to ignore certificate check
Posted in Uncategorized
Comments Off on Set Powershell to ignore certificate check
Adopt Unifi Ubiquiti AP
SSH to the IP address of the AP Log on with username “ubnt” and password “ubnt” Run command “set-inform http://ip-of-controller:8080/inform”
Posted in Uncategorized
Comments Off on Adopt Unifi Ubiquiti AP
Powershell Force TLS 1.2
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Posted in Uncategorized
Comments Off on Powershell Force TLS 1.2
Install WSUS Updates with Powershell
Posted in Uncategorized
Comments Off on Install WSUS Updates with Powershell
Homebridge example file, Home Assistant and ffmpeg
[codesyntax lang=”php”] { “bridge”:{ “name”:”HomebridgeDocker”, “username”:”CC:22:3D:E3:CE:30″, “port”:51826, “pin”:”031-45-154″ }, “description”:”This is an example configuration file. You can use this as a template for creating your own configuration file containing devices you actually own.”, “accessories”:[ ], “platforms”:[{ “platform”: “HomeAssistant”, “name”: “HomeAssistant”, … Continue reading
Posted in Uncategorized
Comments Off on Homebridge example file, Home Assistant and ffmpeg
Check local certificate store for expired certificate
This script looks inside local machine certificate store for expired certificates. If found, it writes to the event log. [codesyntax lang=”powershell”] $ThresholdWarning = “60” #Set warning date $ThresholdError = “30” #Set error date New-EventLog -Source PKI -LogName Application -ErrorAction:SilentlyContinue $Certs … Continue reading
Posted in Powershell, Uncategorized
Comments Off on Check local certificate store for expired certificate
Problems updating Turnkey appliance WordPress installation
When you click the update button i WordPress you come to a page where WordPress wants you to specify a ftp server. This is because faulty ownership of the WordPress files. Soloution: chown -R www-data:www-data /var/www/wordpress
Posted in Uncategorized, Wordpress
Comments Off on Problems updating Turnkey appliance WordPress installation