isinteg is now New-MailboxRepairRequest in Exchange 2010

It turns out that the command “isinteg -s mail -fix -test alltests has been replaced.

This is what I used instead:
New-MailboxRepairRequest -Mailbox [email protected]  -CorruptionType SearchFolder, AggregateCounts, ProvisionedFolder, FolderView

New-MailboxRepairRequest -Database “Mailbox Database 134628591” -CorruptionType SearchFolder, AggregateCounts, ProvisionedFolder, FolderView

http://blogs.technet.com/b/exchange/archive/2010/08/23/3410708.aspx
http://eightwone.com/2010/06/14/goodbye-isinteg-hello-new-mailboxrepairrequest/

Great Photographers Adventure Club Meeting

Wow! Tonight I attend the Photographers Adventure Club lead by Nick Pappagallos. The Topic was hot to “Build a Loyal Blog Following” presented Melissa Jill. It was an awesome presentation One take away “..be vulnerable, transparent, consistent, challenge yourself, and post regularly” .

http://www.melissajill.com/blog.cfm
http://photographersadventureclub.com
http://www.nicholaspappagallo.com

Outlook Security Alert with Outlook 2010 and Exchange 2013

With newer UCC SSL certificates it is often not possible to register local domain names.  Example:  mail.mydoman.local
Using the default exchange 2013 setting the outlook 201 client will get a “Security Alert” the says “The name on the security certificate is invalid or does not match the name of the site”

I resolved this by changing the Auto Discover Service Internal Uri.

First I stated the exchange Server 2013 power shell.
And ran these commands:

Get-ClientAccessServer
Get-ClientAccessServer -Identity ExchangeServerName | fl  *
Set-ClientAccessServer -Identity VR-EXCHANGE -AutoDiscoverServiceInternalUri: https://ExchangeServerName.domain.com/Autodiscover/Autodiscover.xml
Get-ClientAccessServer -Identity ExchangeServerName | fl  *

How I unhide mutiple folders after a cleints Win32./Vobfus.NN infection

Here is a link to more info on the Malware Vobfus.NN

I created the following batch file.

for /F "tokens=*" %%a in ('dir /ad/b') do attrib -h -s -r "%%a"
attrib *.doc -s -h
attrib *.pdf -s -h
attrib *.avi -s -h
attrib *.jpg -s -h
attrib *.png -s -h
attrib *.txt -s -h
attrib *.dwg -s -h
attrib *.dgn -s -h
attrib *.psd -s -h
attrib *.in -s -h
attrib *.docx -s -h
attrib *.xlsx -s -h
attrib *.ppt -s -h
attrib *.pptx -s -h

How I create virtual machine with a 150GB OS partition but without the 100MB hidden partition

*** Caution  ***  be careful this can cause issues and data loss

When I see this screen at the start of the Server 2012 installation I do the following
Press Shift+F10

SNAG-0000

SNAG-0001
Then at the OS Prompt  I type:

Diskpart
select disk 0
create partition primary size=150000
active
format fs=ntfs quick
exit

Then I continue with the installation

Where I got my info:
 http://www.vmwareinfo.com/2010/09/creating-windows-2008-r2-server-without.html
http://superuser.com/questions/462657/avoiding-the-pesky-windows-7-system-reserved-partition

Using a Verizon 4260L Jet Pack MiFi as a router

Here are the links I used to turn a workstation into a temporary router that allow multiple workstations to access the internet using the MiFi JetPack

http://www.ntkernel.com/?Products:Network_and_Security:Internet_Gateway
http://www.evdoinfo.com/content/view/4117/63/

http://production.4620.verizon.mifiupdates.com/Windows/MiFi4620LWin.zip

2-18-2013 11-49-02 AM

 

I also had to apply a static IP Address to the workstaions, and then switch them back toDCHP once the internet  was backup.
Set IP Address to Static

————————-
netsh interface ipv4 set address “local area connection” static 192.168.100.214 255.255.255.0 192.168.100.1
netsh interface ip add dns name=”Local Area Connection” 8.8.8.8 index=2

Set IP Address to DHCP
————————
netsh interface ip set address name=”Local Area Connection” source=dhcp
netsh interface ip set dnsservers name=”Local Area Connection” source=dhcp