Word 2013 opens and all images are sized incorrectly, either large or small. Deleting the registry key below fixed this issue for Word 2013: HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Word
Latest Posts
Vertical and Horizontal Centered Webpage.
A way to vertically center content on a webpage using the css table property. html { height: 100%; } body { display: table; width: 100%; height: 100%; } #childtobody { display: table-cell; vertical-align: middle; text-align: center; }
SCCM error 0x80004005
Generic error (0x80004005) Possible entries in smsts.log: reply has no message header marker Failed to read client identity Failed to get client identity Possible fixes. 1. Incorrect time/date on client
Copy Contents Of Directory To Another Directory Using cp in Bash
This command will copy the contents of dir2 and place them into dir4 using BASH shell. -u or –update is optional and will only copy if source file in newer. -R or –recursive will copy all sub directories. cp dir1/dir2/. dir3/dir4 -R -u
SCCM Error 0x800700A1
System Center Configuration Manager Error 0x800700A1 This error seems to occur due to missing a partition. The following commands can be used to create one during build using a command prompt(f8). diskpart list disk select disk 0 clean create partition primary format quick
Clone USB Data Drive
To clone one USB drive to another replace source and dest below with your Windows drive letters: xcopy <source>: <dest>: /e /h /k
Fix Windows 7+ Corrupt Profile
If a user is given a temporary profile whilst logging onto Windows you can try the following to remedy the problem. 1. Log in using an account with administrative rights 2. Delete the key associated with the corrupt user in HKLM\Software\Microsoft\Windows NT\CurrentVersion\ProfileList 3. Delete the key associated with the corrupt user in HKLM\Software\Microsoft\Windows NT\CurrentVersion\ProfileGuid 4. […]