Categories
- Education (6)
- Fix IT (29)
- Information Technology (53)
- Tips (6)
- Uncategorized (7)
Tags
Author Archives: maoeh
Lightroom is not showing mapped drives
Problem: Lightroom is not showing mounted drives to be selected as source for import or destination. Solution: Use /persistent:yes while mapping the drives and they show up Example: net use L:\\server\share\folder /persistent:yes
Posted in Tips, Uncategorized
Tagged Lightroom, Problem
Comments Off on Lightroom is not showing mapped drives
Set processor affinity for scom agent
Problem SCOM agent tasks are consuming 100% processor time causing a slow reaction time on servers. Solution Force SCOM agent processes to run on one CPU-core so other tasks get processor time. To achieve this add a scheduled task running … Continue reading
Revoke certificate from Microsoft PKI
This solution is based on powershell module PSPKI . Here is a link to download it : https://www.powershellgallery.com/packages/PSPKI/3.2.7.0 Open Poweshell and run the following commands Import-Module PSPKI $sCAServer = "<FQDN of your CA Server" # read certificates into a variable … Continue reading
Posted in Fix IT
Tagged certificate, Powershell
Comments Off on Revoke certificate from Microsoft PKI
Enable access to a file system share using dns alias
Out of the box Windows is not allowing access to a file system share exept using the server name. Example \\Server\share or \\server.domain.com\share To access a share using a dns alias do the following. create a dns alias pointing to … Continue reading
Kill all but own powershell process
use the following command within powershell to terminate all but your one shell. get-process | where {$_.name -like “powershell” -and $_.ID -notlike “$pid”} | stop-process
Posted in Information Technology
Tagged Powershell
Comments Off on Kill all but own powershell process
Synology phpMyAdmin update is ending in page error
Problem phpMyAdmin is not starting. You get a webpage displaying the following error in red color. The mysqli extension is missing. Please check your PHP configuration. Solution: Open “Web Station” GUI from the main menu of your NAS. Then proceed … Continue reading
Install Telnet Client using command line
dism /online /Enable-Feature /FeatureName:TelnetClient
Posted in Information Technology
Tagged commandline
Comments Off on Install Telnet Client using command line