|
Written by Bas
|
|
Windows 7 applications loosing their icon's.
Today I lost my icon from outlook 2007 below the fix for the problem, the simple way to rebuild the windows icon cache. The icon cache can be cleared and rebuild by deleting the file : IconCache.db this is a hidden file.
Here the way how to solve the problem.
- Start Task Manager.
- In the Process tab, right-click on the Explorer.exe process and click End Process.
- Click the End process.
- Click file of Task Manager and select New Task (Run…)
- Type CMD.EXE and click OK
- In the Command Prompt window, type the following:
CD /d %userprofile%\AppData\Local DEL IconCache.db /a EXIT
- In Task Manager, click File, select New Task (Run…)
- Type EXPLORER.EXE, and click OK.
Now the icon cache is cleared and the problem should be solved.
|
|
|
Written by Bas
|
1. click on your start menu and open the run dialog. 2. type "cmd" and press enter 3. Next type "fsutil dirty query c:" 4. If the return message indicates that the volume is dirty go to step 5 5. Next type "chkdsk c: /f /x" 6. After that finshes repeat step 3. 7. If it is no longer dirty then reboot and you should notice no more ckdisk. |
|
Written by Bas
|
Maximizing virtual address spaceIt is best to monitor the virtual address space for the Information Store on large mailbox servers to make sure that performance and stability does not decrease. The easiest way to do this is to monitor the VM Largest Block Size counter of the MSExchangeIS performance object in the Performance utility. This value is shown in bytes. After you start the computer, it is typical to see a sharp decrease in the largest virtual memory block size. However, after a day or two of operation, the value approaches a typical operating level. A value for the largest free virtual memory block that is more than 200,000,000 bytes (about 200 MB) indicates a healthy server. If you notice a lower value than this, monitor the server more closely. If you experience a low virtual address space: - If you have 1 GB or more of physical memory installed, make sure that the /3GB switch is set in the Boot.ini file if the following conditions are true on the server:
- The server is home to mailboxes or public folders.
- The operating system is Windows 2000 Advanced Server or Windows Server 2003.
If the server does not have any mailboxes or public folders on it, such as a mail gateway, we do not recommend that you use the /3GB switch. - If Exchange Server 2003 is installed on a Windows Server 2003-based server, and if it has the /3GB switch set, make sure that the /USERVA=3030 switch is set in the Boot.ini file. If Exchange Server 2003 is installed on a Windows 2000-based server, make sure that the server is running Windows 2000 Service Pack 3 (SP3) or later.
- If you have 1 GB or more physical memory installed, configure the HeapDeCommitFreeBlockThreshold registry value in the following registry key, and then restart the server:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager Value name: HeapDeCommitFreeBlockThreshold Value type: REG_DWORD Value data: 0x00040000 (recommended) Value default: not present
To add the /3GB and /USERVA switches to your Boot.ini file, simply open Boot.ini in a text editor such as Notepad, add the /3GB and the /USERVA=3030 parameters to the startup line, and save your changes. The changes will not take effect until you reboot the system. The boot.ini will look like this : [boot loader] timeout=30 default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS [operating systems] multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Windows Server 2003, Enterprise" /noexecute=optout /fastdetect /3GB /USERVA=3030 The memory optimilization error in the event viewer will only disapear when the registry key is edited with : 00040000
|
|
Written by Bas
|
|
In Exchange 2007 you can't remove disconnected mailboxes from the GUI you can do this from the powershell.
Show the disconnected mailboxes on the server.
| Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid |
Remove one disconnected mailbox.
| Remove-Mailbox -Database -StoreMailboxIdentity -confirm:$false |
To remove all mailboxes at ones we have to set a variable then give the command to cleanup disconnected mailboxes.
|
$users = Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid
$users | ForEach { Remove-Mailbox -Database "Mailbox Database" -StoreMailboxIdentity $_.MailboxGuid -confirm:$false }
|
To remove all disconnected mailboxes on a server in every datastore use the following command.
| $users = Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid,Database
$users | ForEach { Remove-Mailbox -Database $_.Database -StoreMailboxIdentity $_.MailboxGuid -confirm:$false }
|
|
|
Written by Bas
|
|
LET OP VOLGENDE ACTIES OP EIGEN VERANDWOORDING !!!! Het volgende probleem :Exchange mail Store kan niet meer gestart worden. Exchange 2003 - controleer de exchange mail store file : Eseutil.exe /mh "[drive]:\Exchsrvr\MDBData\[storage group]\[mail store]\MAILSTOREFILE.edb" (Pas pad aan naar eigenomgeving)
- Indien er dan in beeld komt dat er een State: "Dirty Shutdown" is geweest, dan is er de mogelijkheid de database te repareren.
- Voer een reparatie uit op het database bestand : Eseutil.exe /p "D:\Exchsrvr\MDBData\[storage group]\[mail store]\MAILSTOREFILE.edb" (DIt kan enige tijd duren)
- De mail store kan nu weer gestart worden.
|
|
Read more...
|
|
|
|
|
<< Start < Prev 1 2 Next > End >>
|
|
Page 1 of 2 |