• Welcome to community.cognetic.com.
 

News:

Cognetic Awarded one of Houston's Largest Tech Companies

Main Menu

Recent posts

#71
Dell / How to Download OEM Software P...
Last post by bflores - March 10, 2014, 02:19:59 PM
How to Download OEM Software Pre-Bundled with Dell PCs
https://smartsource.dell.com
#72
Dell / Windows 8 Pro goes to Sleep af...
Last post by bflores - December 09, 2013, 09:24:18 AM
Windows 8 Pro goes to Sleep after 60 Seconds of Inactivity

Export and Remove:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\238C9FA8-0AAD-41ED-83F4-97BE242C8F20\7bc4a2f9-d8fc-4469-b07b-33eb785aaca0\DefaultPowerSchemeValues

SOURCE: http://www.sevenforums.com/tutorials/35767-sleep-return-timeout-unattended-wake-up.html
#73
Exchange Server / Exchange 2010 - Restore an Exc...
Last post by bflores - December 03, 2013, 07:45:06 PM
How to Restore Exchange Mailbox from a Windows Backup

1.) Restore Database from Windows backup to an alternate location.

2.) Run ESEUTIL /MH "e:\recovery\recovered_exchange.edb" to check the database state. (i.e. dirty shutdown)

3.) Run ESEUTIL /P on restored database to get to a clean state (will take a long time).

4.) Run ESEUTIL /MH after repair, to confirm database is in a clean state.

5.) Once in a clean state. Create the database so it will show up in ESM.
New-MailboxDatabase -Recovery -Name RDB1 -Server TAGOSEX -EdbFilePath "e:\Recovery\RDB1.EDB" -LogFolderPath "e:\Recovery"

6.) Go to ESM and mount the database.

7.) Once the database is mounted.  Restore the recovered mailbox from the recovered database, to a mailbox on your production exchange server/database.
New-MailboxRestoreRequest -SourceDatabase RDB1 -SourceStoreMailbox "jdoe" -TargetMailbox jdoe

or if you are restoring from jdoe to another mailbox like an admin mailbox use the -AllowLegacyDNMismatch parameter.
New-MailboxRestoreRequest -SourceDatabase RDB1 -SourceStoreMailbox "jdoe" -TargetMailbox jdoe -AllowLegacyDNMismatch

8.) To check the restore progress type: Get-MailboxRestoreRequest
#74
Dell / How to Repair Dell Digital Del...
Last post by bflores - November 22, 2013, 01:43:06 PM
Stop the Digital Delivery service under Windows.

1.) Stop "Dell Digital Delivery" Service
2.) Navigate to C:\ProgramData\Dell\Digital Delivery
3.) Rename ClientFulfillmentService.State.settings to ClientFulfillmentService.State.settings.old
4.) Start "Dell Digital Delivery" Service
5.) Launch Dell Delivery Service, or let it start on its own.  Download will start after a few seconds.
#75
Dell / Dell Thermal Hardware Diagnost...
Last post by bflores - September 26, 2013, 06:56:54 PM
Dell Thermal Hardware Diagnostics
FN+Shift+1+5+3+2+4 then Fn+r
#76
Google / Check Google Apps Status - App...
Last post by bflores - September 23, 2013, 02:05:39 PM
#77
Google / Install Google App Sync for Ou...
Last post by bflores - July 05, 2013, 02:15:15 PM
(SOLUTION TO INSTALL GOOGLE APPS SYNC FOR OUTLOOK 2010 WITH OFFICE 2013 APPS INSTALLED)

1. regedit.exe

2. Rename
HKEY_LOCAL_MACHINE\Software\Microsoft\Office\15.0
HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\Office\15.0
to
HKEY_LOCAL_MACHINE\Software\Microsoft\Office\15.0.org
HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\Office\15.0.org

3. Download and installed Google Apps Sync for Outlook.
4. After installed and config, rename office 15 reg keys back to original name.

My solution worked because I have Outlook 2010.  This may not work for you if you have click to run office
#78
Office / Uninstall Office 2013 automati...
Last post by bflores - April 26, 2013, 03:25:09 PM
Uninstall Office 2013 automatically using a Fix it
http://support.microsoft.com/kb/2739501?wa=wsignin1.0
#79
Windows / Manage Wireless Networks in Wi...
Last post by bflores - March 21, 2013, 02:26:11 PM
Show Wireless Networks
netsh wlan show profiles

Show stored key for a Wireless Network
netsh wlan show profiles name=[profile name] key=clear

Delete Stored Wireless network
netsh wlan delete profile name=[profile name]
#80
Exchange Server / Re: Exchange 2010 - Powershell...
Last post by bflores - January 30, 2013, 04:24:25 PM
(TO GET A LIST OF MAILBOX SIZES)
Get-MailboxStatistics -Server CASSERVER | Select DisplayName, ItemCount, TotalItemSize | Sort-Object TotalItemSize -Descending

(TO EXPORT A LIST OF MAILBOX SIZES TO A TXT FILE)
Get-MailboxStatistics -Server CASSERVER | Select DisplayName, ItemCount, TotalItemSize | Sort-Object TotalItemSize -Descending | Export-CSV C:\MBSizes.csv