Google backup your emails and blogs

We are depended on many Google Services like Gmail for emails, Blogger for blogs and Google Reader for feeds for our day to day task. We can’t even think about losing our Google or Gmail account. For this reason it is necessary to have offline backup of Gmail, Blogger or Google Reader account. Unfortunately Google … Read more

Google hacking at its finest..

Google hacking at its finest.. Using Google, and some finely crafted searches we can find a lot of interesting information. For Example we can find:Credit Card NumbersPasswordsSoftware / MP3's …… (and on and on and on) Presented below is just a sample of interesting searches that we can send to google to obtain info that … Read more

For inboxes information to export to excel for single system complete list

Script for complete Inboxes checks to export the results to Excel file sStartPath = “your sccmservernameSMS_smssitecodeinboxes”Set oFSO = CreateObject(“Scripting.FileSystemObject”) Set objExcel = CreateObject(“Excel.Application”)objExcel.Visible = TrueobjExcel.Workbooks.AddintRow = 2 objExcel.Cells(1, 1).Value = “Directory”objExcel.Cells(1, 2).Value = “Count” ListFolders(sStartPath) Sub ListFolders(sPath)Set oFolder = oFSO.GetFolder(sPath)objExcel.Cells(intRow, 1).Value = oFolder.PathobjExcel.Cells(intRow, 2).Value = oFolder.Files.CountintRow = intRow + 1 For Each oFldr In oFolder.SubFoldersListFolders … Read more

Delete script for bad inboxes files for SMS / SCCM

Delete script for bad inboxes files for SMS / SCCM     DEL /Q MYSCCMSERVERNAMEsms_sitecodeinboxesauthdataldr.boxBADMIFSDEL /Q MYSCCMSERVERNAMEsms_sitecodeinboxesauthdataldr.boxbad DEL /Q MYSCCMSERVERNAMEsms_sitecodeinboxesauthddm.boxBAD_DDRSDEL /Q MYSCCMSERVERNAMEsms_sitecodeinboxesauthddm.boxbad DEL /Q MYSCCMSERVERNAMEsms_sitecodeinboxesddm.boxBAD_DDRSDEL /Q MYSCCMSERVERNAMEsms_sitecodeinboxesauthstatesys.boxcorrupt       save the above as .bat or .cmd file and run it. You need to replace the server name with sccm server name and site code … Read more

FOR INBOXES SCRIPT DEVELOPED BY me…

FOR INBOXES SCRIPT DEVELOPED BY me…       date /t >>"D:SCCM TeamDaily_checks_archive_ReportsINBOXESBACKLOGS.txt"ECHO dc1 >>"D:SCCM TeamDaily_checks_archive_ReportsINBOXESBACKLOGS.txt"diruse /* /m "MYSCCMSERVERNAMEd$Program Files (x86)Microsoft Configuration Managerinboxes" >>"D:SCCM TeamDaily_checks_archive_ReportsINBOXESBACKLOGS.txt" date /t >>"D:SCCM TeamDaily_checks_archive_ReportsINBOXESBACKLOGS.txt"ECHO P01 >>"D:SCCM TeamDaily_checks_archive_ReportsINBOXESBACKLOGS.txt"diruse /* /m "MYSCCMSERVERNAME2d$Program Files (x86)Microsoft Configuration Managerinboxes" >>"D:SCCM TeamDaily_checks_archive_ReportsINBOXESBACKLOGS.txt" date /t >>"D:SCCM TeamDaily_checks_archive_ReportsINBOXESBACKLOGS.txt"ECHO P02 >>"D:SCCM TeamDaily_checks_archive_ReportsINBOXESBACKLOGS.txt"diruse /* /m "MYSCCMSERVERNAME3d$Program Files (x86)Microsoft Configuration Managerinboxes" … Read more

For Windows 2003 Server Event viewer archive script

For Windows 2003 Server Event viewer archive script, FYI! in 2k8 you can set archive option but not in 2k3 or below 2k8 servers   strArchiveFolder = "C:BckEvt"ServerName = "." Set WS = CreateObject("Wscript.Shell")Set FSO = CreateObject("Scripting.FileSystemObject") DateString = CurrentDate() Purge = True on error resume nextStartTime = NowOutput "———————————"OutPut "Started at: " & CStr(Now)Output … Read more

Tool to create MOF file

Tool to create MOF file     https://myitforum.com/cs2/blogs/skissinger/archive/2009/04/13/mark-cochrane-s-regkeytomof.aspx Mark Cochrane (System Center Configuration Manager MVP) released an excellent tool to assist with your custom MOF snippet creations, RegkeyToMof.  Grab it from here: https://www.myitforum.com/inc/upload/12336RegKeyToMOF.zip To use it, Run regkeytomof on a box which has the regkeys you want to gather, and browse in the top window … Read more

Tools and Utilities for ConfigMgr / SCCM 2007 Including beta's

SOURSE:–https://www.myitforum.com/myITWiki/Default.aspx?Page=SCCMTools     SCCM OU Collection Creator – Matthew Hudson ===Tools and Utilities=== SccmAutoDoc Kim Oppalfens, who is a SCCM MVP, has released a neat utility called SccmAutoDoc. SccmAutoDoc is a command line utility that automatically documents an SCCM site into a human-readable form with minimal user input. Only the useful information is included, as … Read more

Tools and Utilities for ConfigMgr / SCCM 2007 Including beta’s

SOURSE:–https://www.myitforum.com/myITWiki/Default.aspx?Page=SCCMTools     SCCM OU Collection Creator – Matthew Hudson ===Tools and Utilities=== SccmAutoDoc Kim Oppalfens, who is a SCCM MVP, has released a neat utility called SccmAutoDoc. SccmAutoDoc is a command line utility that automatically documents an SCCM site into a human-readable form with minimal user input. Only the useful information is included, as … Read more

add your own right click option / extend the SCCM Tools Right click tools

This guide will show you how you can extend the SCCM Tools avavable from here: https://myitforum.com…figMgrTools.zip If you don´t have this toolkit installed. Download it and install it before continuing. This is how they look by default: The actions with this package are not stored within the regestry anymore. Instead they are stored in xml … Read more