Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dgschnei

    VSS Log with comments included

    Hello, We are using VSS version 6.0 Build 8163. During incremental builds we would like to have a log of the files that are fetched with their comments included in the log. We need this because in the comments there are the TR numbers. By looking at the log we will see the name of the file...
  2. dgschnei

    How to Get Version from File Property of DLL OCX EXE

    Thank you very much for your help! Set FSO = CreateObject("Scripting.FileSystemObject") Set Folder = FSO.GetFolder("D:\DomiFolder") Set F_Files = Folder.Files For Each File In F_Files MsgBox File.Path & chr(32) & FSO.GetFileVersion (File.Path) Next Great forum, great help...
  3. dgschnei

    How to Get Version from File Property of DLL OCX EXE

    Hello all, I am trying to write a scrip that will output the following information: List of files (DLL EXE OCXs) and their version. How can I read the VERSIONs DLLs, EXEs, OCXs located in a folder? "Version" being the value obtained when using right click and file property in the Version...
  4. dgschnei

    Need to close Outlook from VBScript

    Perfect! Thank you for the help.[thumbsup2] Dominique G. Schneider http://www.contactez.net/portfolio.html http://gurleyalabama.contactez.net
  5. dgschnei

    Need to close Outlook from VBScript

    I have a batch driven vbscript for daily and weekly (zipped) backups. I want to backup my mail. I need to close Outlook and save before zipping the Outlook mail files. I can close Outlook using vbscript or batch file... whatever is easier. How can I close Outlook? I came up with this script...
  6. dgschnei

    Need t constantly invoke event to restore VSS archive

    Thanks! Feels good to know that I am not alone ;O) I think it is time for us to get a newer version of VSS. We need to automate more fetching tasks anyway... I hope this is fixed in newer versions of VSS. Thank you! Dominique G. Schneider http://www.contactez.net/portfolio.html Dominique...
  7. dgschnei

    Need t constantly invoke event to restore VSS archive

    Need 2 constantly invoke event to restore VSS archive cause Administrator freezes VSS Administrator hangs during restore of archive unless refresh event is invoqued We are using Visual SourceSafe Administrator Version 6.0 Build 8163 The problem emerges when we restore a SSA project. The...
  8. dgschnei

    Create Icons LNK Start Programs ME

    For the people that may be interested by such need to create shortcuts, as far as I know I resolved the creation of shortcuts on Win98 / ME / 2000 / XP by using in my VB utility ShellLink.CLS and ShellLink.BAS and I also referenced ShellLink.TLB. Then I use in the code: Dim MyObj As New...
  9. dgschnei

    Create Icons LNK Start Programs ME

    I got it to work on ME by using: Public Declare Function fCreateShellLink Lib "vb5stkit.dll" (ByVal lpstrFolderName As String, ByVal lpstrLinkName As String, ByVal lpstrLinkPath As String, ByVal lpstrLinkArguments As String) As Long fSuccess = fCreateShellLink(strGroupName...
  10. dgschnei

    Create Icons LNK Start Programs ME

    I use OSfCreateShellLink in my VB program to create icons link in Start>Programs and in immediate subfolders. fSuccess = OSfCreateShellLink(strGroupName, strLinkName, strLinkPath, strLinkArguments, fPrivate, sParent) It works fine on Windows 2000 and XP; all the icons get created fine. But I...
  11. dgschnei

    Remove registry info entries for all users in system or just owner? XP

    Concerning Windows XP logo guidelines We are wondering if it is required to remove registry info for all users in system or just the owner? Our application enters user information in the registry during runtime. (Not during the installation but at runtime.) This information is entered to keep...
  12. dgschnei

    Check if user has Administrator rights

    Thank you for your help. It works for me, you have been of great help. It is a very good forum, I will let people know about it. It seems you guys saved my life [thumbsup2] :O)
  13. dgschnei

    Check if user has Administrator rights

    How can find out if the user has administrator rights using VB and/or VBscript? If the user does not have administrator's access rights, I simply want to display a message and quit. Thanks PS: I can get the user's name and computer's name using VBA.Environ("USERNAME"), Function...
  14. dgschnei

    Check is user has Administrator Privileges

    How can find out if the user has administrator privileges using VB and/or VB script? If the user does not have administrator privileges, I simply want to display a message and quit. Thanks PS: I can get the user's name and computer name using VBA.Environ("USERNAME"), Function...

Part and Inventory Search

Back
Top