My Pictures Library located on a network share is very slow when opening, even if no pictures are loaded but just icons. To avoid this:
Open properties of the My Pictures folder. Click Customize tab. Change Optimize this library for value from Pictures to General Items.
Now it should open much faster.
When your computer is having a UEFI , it will prefer a GPT (GUID Partition Table) on the harddisk to function. GPT has advantages over MBR (Master Boot Record) such as support for larger disks.
Start the diskpart.exe and run the command:
list disk
When there is a star in the Gpt column the disk is Gpt, else it is an MBR disk.
(Example of a disk without GPT)
More information about the difference between GPT and MBR can be found on the Wiki pages:
GPT = GUID Partition Table (http://en.wikipedia.org/wiki/GUID_Partition_Table)
MBR = Master Boot Record (https://en.wikipedia.org/wiki/Master_boot_record)


Tools such as SCCM are normally running installations in the LocalSystem privilege set. In some cases that is different from a Administrator account. Normally it is not possible to logon with the LocalSystem account because Microsoft is not supporting that. In this little blogpost you find the techniques to become System on your Windows 7 / Windows 8 box. You can download psexec from http://live.sysinternals.com and run with the following options:
psexec -i -s cmd.exe
You get a command prompt open. In that one type:
whoami
To check if you are the nt authority\system (which is the LocalSystem account). During my jobs I found that the psexec is not always the most reliable option to use. The following option is better in representing a true System account and working as a service (Like SCCM does)
sc create cmd binpath= "cmd /K start" type= own type= interact
When you are running Windows 8, you have to check the following registry key:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Windows\NoInteractiveServices
This must have value 0, else you won’t get the Interactive Services window. After that type this code:
sc start cmd
Click in the screen on View the message to start Interactive Services.
Now you are in and you can do the job or throubleshoot your problem.