DatabaseDude
Programmer
I've downloaded some VB code that creates a wrapper for the FileSystemWatcher class in .NET.
Included was an install.bat file to register everything.
It worked great on one machine. However, on another, I got the following error:
Any ideas of something that maybe should be installed additionally?
The machine yielding the error does have .NET 2.0 framework installed, and is running Win XP Pro with all service packs.
Contents of install.bat:
Thanks in advance!
Included was an install.bat file to register everything.
It worked great on one machine. However, on another, I got the following error:
Code:
gacutil is not recognized as an internal or external command
Any ideas of something that maybe should be installed additionally?
The machine yielding the error does have .NET 2.0 framework installed, and is running Win XP Pro with all service packs.
Contents of install.bat:
Code:
path=%path%;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727;C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin
regasm "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\system.windows.forms.dll"
gacutil -u IOLib
regasm /u "IOLib\IOLib\bin\Release\IOLib.dll"
regasm /tlb "IOLib\IOLib\bin\Release\IOLib.dll"
gacutil -i "IOLib\IOLib\bin\Release\IOLib.dll"
pause
Thanks in advance!