Categories
- Education (6)
- Fix IT (29)
- Information Technology (53)
- Tips (6)
- Uncategorized (7)
Tags
Category Archives: Tips
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
Get OS Version from Windows Install medium
Find the wim file located in :\sources on the install medium then run a command shell as administrator. dism /get-wiminfo /wimFile:<Drive>:\sources\<Wimfile> As a result you should get something like this: dism /get-wiminfo /wimfile:Y:\sources\boot.wim Deployment Image Servicing and Management tool Version: … Continue reading
Cleanup winsxs folder
Do not delete files manually from winsxs folder . Instead use the following command to remove old servicepack files. dism.exe /online /cleanup-Image /spsuperseded
Powershell from scheduled task
As powershell is running by default in secure mode , use the following setting to run powershell scripts from a scheduled task. This way you do not have to elevate the rights for running scripts. Ensure your Powershell script is … Continue reading
Posted in Information Technology, Tips
Tagged Powershell
Comments Off on Powershell from scheduled task