Settings > Appereance > Dock > Icon Size
2020-12-29
How to change icon size of the dock in Ubuntu / Unity
2020-12-02
Disable ask for password after suspend in Ubuntu
gsettings set org.gnome.desktop.screensaver ubuntu-lock-on-suspend false
2020-12-01
Add Chrome shortcut for more profiles on desktop
1. Create a file named User.desktop
2.Edit the file:
#!/usr/bin/env xdg-open[Desktop Entry]Version=1.0Type=ApplicationTerminal=falseIcon[en_US]=google-chromeExec=google-chrome --profile-directory=Profile\ 1Name[en_US]=UserName=UserIcon=google-chrome
3. Move the file on the desktop
4. Right click on he file and select "Allow Launching"
5. Double click on the file to start chrome with your profile
2020-11-03
Dell Diagnostic Error Codes
Blinking Pattern | Possible Problem | Problem Description | |
---|---|---|---|
Amber | White | ||
2 |
1 |
CPU | CPU failure |
2 |
2 |
BIOS ROM failure | System board failure (included BIOS corruption or ROM error) |
2 |
3 |
Memory | No memory/ RAM detected |
2 |
4 | Memory | Memory/ RAM failure |
2 |
5 |
Memory | Invalid memory installed |
2 |
6 |
Chipset | System board/ Chipset error |
2 |
7 |
LCD | LCD failure |
3 |
1 |
RTC power failure | CMOS battery failure |
3 |
2 |
PCI/ Video | PCI or Video card/ chip failure |
3 |
3 |
BIOS recovery 1 | Recovery image not found |
3 |
4 |
BIOS recovery 2 | Recovery image found but invalid |
2020-10-21
Excel print to pdf gets the error mandatory field empty
To solve this, you have to go to
Options > Trust Center > Trust Center Settings > Trusted Documents
and click on the Clear button
2020-09-25
Lock workstation from command line
rundll32.exe user32.dll,LockWorkStation
2020-09-17
SMSTS log file location
2020-07-24
2020-06-17
Enable / Disable fast startup or hybrid sleep from command line
powercfg -h off to disable hibernation
powercfg -h on to enable hibernation
2020-03-18
Remove all exif data from photos
Run the following command to remove all exif data from all jpg files (and also the output will be the same file, old files will be overwritten with the new ones)
exiftool.exe -overwrite_original -all= *.jpg
2020-02-21
Disable "Power Button Lockout" on HP ZR2440W
2020-02-12
Fix: Skype for business error: There was a problem acquiring a personal certificate to sign in
Step 1: Delete sign in information
- open skype
- click Delete my sign-in information
- re-login
- open a command prompt and run the following command:
- certmgr.msc
- Go to Personal/Certificates
- delete the certificate issued by Communications Server
- open a command prompt and run the following command
- ipconfig /flushdns
- delete your sip folder:
- Windows XP
- go to %USERPROFILE%\Local Settings\Application Data\Microsoft\Communicator<sip_YourEmailAddress>\
- Windows Vista/7/8/10
- go to %LOCALAPPDATA%\Microsoft\Communicator<sip_YourEmailAddress>\
- if you can't find the folder just search in %appdata% for SIP_ and delete that folder (it should look like this: sip_YourEmailAddress)
2020-01-22
Uninstall/repair pending update [Windows 10]
dism /image:C:\ /Cleanup-Image /revertpendingactions
2020-01-16
CrowdStrike Windows Sensor: install location
CrowdStrike Windows Sensor: Check if service is running from command line
sc query csagent
2020-01-08
Flexible Single-Master Operations (FSMO) Roles
- PDC Emulator (One per domain)
- RID Master (One per domain)
- Schema Master (One per forest)
- Domain Naming Master (One per forest)
- Infrastructure Master (One per domain)
- Domain DNS Zone Master role (one per domain)
- Forest DNS Zone Master role (one per forest)
2020-01-06
Map network drive from command line
net use y: \\ServerName\SharedFolder /persistent:yes
Use the /persistent switch to restore the connection at next logon