Script Center > Gallery > Storage > Monitor File Modifications
TechNet Script Center logo

Welcome to the TechNet Script Center Gallery!

Each contribution is licensed to you under a License Agreement by its owner, not Microsoft. Microsoft does not guarantee the contribution or purport to grant rights to it.

Monitor File Modifications

(Community)
Rate it:
 
 
 
 
 
Script Code
VBScript
' Monitors a spreadsheet file. Reopens it when it changes.
' Monitored file must be on a mapped drive (network paths don't work)
' Best run with cscript. If you've double-clicked look for wscript in Task Manager and kill it
' Rob H 12/1/06
'
' Code cobbled from http://www.microsoft.com/technet/scriptcenter/scripts/storage/files/stfivb23.mspx
' and http://www.microsoft.com/technet/scriptcenter/scripts/office/excel/ofexvb08.mspx

' Following path must have \ and ' escaped
 strFileToMonitor = "p:\\Childrens\\ETV CHILDREN\'S\\CBBC\\Blue Peter Four Nations Challenge\\Technical\\blue peter burndown.xls"
 strFileToOpen = "p:\Childrens\ETV CHILDREN'S\CBBC\Blue Peter Four Nations Challenge\Technical\blue peter burndown.xls"
 strWorkbookName = "blue peter burndown.xls" ' Assumes the workbook's only open once at a time
 strChartName = "Burndown" ' Our desired default sheet

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & _
        strComputer & "\root\cimv2")

Set colMonitoredEvents = objWMIService.ExecNotificationQuery _
    ("SELECT * FROM __InstanceModificationEvent WITHIN 10 WHERE " _
        & "TargetInstance ISA 'CIM_DataFile' and " _
            & "TargetInstance.Name='" & strFileToMonitor & "'")

Wscript.Echo "Monitoring " & strFileToMonitor
Do
	Set objLatestEvent = colMonitoredEvents.NextEvent

	Wscript.Echo "File: " & objLatestEvent.TargetInstance.Name & " changed"
	Wscript.Echo "Modified now: " & objLatestEvent.TargetInstance.LastModified
	Wscript.Echo "Modified before: " & objLatestEvent.PreviousInstance.LastModified

	' In theory we don't need the following conditional, but we find the modified event
	' fires more often than it should
	If objLatestEvent.TargetInstance.LastModified <> objLatestEvent.PreviousInstance.LastModified Then
		openFile
	Else
		Wscript.Echo "Ignoring change"		
	End If
Loop

Sub openFile 
	' Following opens Excel if it already exists, or uses existing window
	' May cause dialog prompts for macros and readonly if it's newly opened
	Set objExcelInstance = GetObject(strFileToOpen)
	Set objExcel = objExcelInstance.Application
	' Save existing window attributes
	Set objWindow = objExcel.Windows(strWorkbookName)
	With objWindow
		coordTop = .Top
		coordLeft = .Left
		coordWidth = .Width
		coordHeight = .Height
	End With
	objExcel.Workbooks(strWorkbookName).Close(False) ' Don't save changes

	' Create the new window
	objExcel.Workbooks.Open strFileToOpen, , True ' Read only
	Set objWindow = objExcel.Windows(strWorkbookName)
	objWindow.Visible = False
	With objWindow
		.Top = coordTop
		.Left = coordLeft
		.Width = coordWidth
		.Height = coordHeight
	End With

	objWindow.Visible = True
	objExcel.Workbooks(strWorkbookName).Charts(strChartName).Activate
	objExcel.Visible = True	' When initially opened, Excel is invisible
End Sub

Platforms
Windows Server 2008 R2 No
Windows Server 2008 No
Windows Server 2003 No
Windows 7 No
Windows Vista No
Windows XP No
Windows 2000 No
For online peer support, join The Official Scripting Guys Forum! To provide feedback or report bugs in sample scripts, please start a new discussion on the Discussions tab for this script.
Disclaimer The sample scripts are not supported under any Microsoft standard support program or service. The sample scripts are provided AS IS without warranty of any kind. Microsoft further disclaims all implied warranties including, without limitation, any implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use or performance of the sample scripts and documentation remains with you. In no event shall Microsoft, its authors, or anyone else involved in the creation, production, or delivery of the scripts be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample scripts or documentation, even if Microsoft has been advised of the possibility of such damages.
Be the first to create a discussion.