• Welcome to community.cognetic.com.
 

News:

Cognetic Awarded one of Houston's Largest Tech Companies

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - bflores

#61
(NOTES)
http://technet.microsoft.com/en-us/library/ee624350(v=office.15).aspx
/inpkey:value Installs a product key (replaces existing key) with a user-provided product key.
/dstatus Displays license information for installed product keys.
/dstatusall Displays license information for all installed licenses.

(TO DISPLAY LICENSE INFORMATION)
cd "C:\Program Files (x86)\Microsoft Office\Office15\"
cscript ospp.vbs /dstatus

(TO CHANGE KEY)
Run the following command to enter the product key.
cd "C:\Program Files (x86)\Microsoft Office\Office15\"
cscript ospp.vbs /inpkey:xxxxx-xxxxx-xxxxx-xxxxx-xxxxx

(ACTIVATE OFFICE)
To activate the remote computer, type the following command, and then press ENTER:
cd "C:\Program Files (x86)\Microsoft Office\Office15\"
cscript ospp.vbs

#62
(DELETE WINDOWS SERVER 2008 R2 BACKUP VERSION HISTORY / CATALOG)
wbadmin delete catalog

Backup Version and Space Management in Windows Server Backup
http://blogs.technet.com/b/filecab/archive/2009/06/22/backup-version-and-space-management-in-windows-server-backup.aspx
#63
How to Download OEM Software Pre-Bundled with Dell PCs
https://smartsource.dell.com
#64
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
#65
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
#66
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.
#67
Dell / Dell Thermal Hardware Diagnostics
September 26, 2013, 06:56:54 PM
Dell Thermal Hardware Diagnostics
FN+Shift+1+5+3+2+4 then Fn+r
#69
(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
#70
Uninstall Office 2013 automatically using a Fix it
http://support.microsoft.com/kb/2739501?wa=wsignin1.0
#71
Windows / Manage Wireless Networks in Windows
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]
#72
(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
#73
( HOW TO INSTALL .NET FRAMEWORK 3.5 on WINDOWS 8 )
In Windows 8 or Windows Server 2012, open a Command Prompt window with administrative credentials (that is, choose Run as administrator).

f installing the .NET Framework 3.5 on demand or enabling it in Control Panel fails, you may get one of the following error messages:

0x800f0906: "Windows couldn't connect to the Internet to download necessary files. Make sure that you're connected to the Internet, and click Retry to try again."

0x800F081F: "The changes could not be completed. Please reboot your computer and try again."


To install the .NET Framework 3.5.  Install from the installation media.  Located in the D:\sources\sxs directory.  Run the following via at a command (run as administrator).  Please note to change the drive letter or path to the respected media location:

DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:d:\sources\sxs

SOURCE: http://msdn.microsoft.com/en-us/library/hh506443.aspx
#74
(TO ADD POP3 SERVICES TO EXCHANGE 2010)
Set-service msExchangePOP3 -startuptype automatic
Set-PopSettings -LoginType PlainTextLogin
Start-service -service msExchangePOP3
Set-CASMailbox -Identity "jsmith" -POPEnabled $true
#75
(NEW SSL SECURE METHOD)
Server: smtp.gmail.com
Authentication: Yes
Port for TLS/STARTTLS: 587
or
Port for SSL: 465

(IF YOUR DEVICE DOES NOT SUPPORT SSL)
To connect with SSL, you need to provide a Google username and password for authentication. Ensure that the username you use has cleared the CAPTCHA word verification test that appears when the user first logs in.

Server: aspmx.l.google.com
Authentication: Yes
Port: 25
SSL or Encryption: NO or OFF

Source: Sending mail from a printer, scanner or app http://support.google.com/a/bin/answer.py?hl=en&answer=176600


(ALTERNATIVE SMTP SERVER SOLUTIONS)
Use: http://www.hmailserver.com/
Doc: http://www.ceics.com/support/google-mail-smtp-relay-solution