Jump to content

lawrenca

Member
  • Posts

    129
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About lawrenca

  • Birthday 05/19/1963

Contact Methods

  • Website URL
    http://

lawrenca's Achievements

1

Reputation

  1. This Link may be what you are looking for. Haven't tried it recently but I remember doing a whole project with links in all my tooltips.
  2. Best place to start is right here in the MSFN. There is a very nice tutorial in the unattended section that should be the starting point for all administrators (stuff they don't teach in Microsoft Certification Courses). Link below. MSFN Unattended As for the programming, any of the "Teach Yourself" series is good for an overview but nothing takes the place of diving in on a project and making mods yourself, leaning on friends in the forums for expert advice, and lets not leave out or forget to search for the answers first before taking up the moderators time to answer...nothing more frustrating than answering the same questions over and over when the info is in help files or forum topics. Good luck!
  3. @Nobby Barnes, I have a lot of luck checking the HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall Key for Add/Remove Programs. Below is a sample of my condition and gcondition that I use for checking whether an app is installed AND available for install on my disk or network store. prog[pn]=['Notepad++ v4.0.2']; ordr[pn]=[170]; uid[pn]=['NOTEPAD402']; dflt[pn]=['no']; cat[pn]=['Commercial Applications']; forc[pn]=['no']; cond[pn]=['FileExists("%root%\\Applications\\Commercial\\Notepad++ v4.0.2\\npp.4.0.2.Installer.exe")']; gcond[pn]=['RegKeyExists("HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Notepad++\\DisplayName")']; cmd1[pn]=['"%root%\\Applications\\Commercial\\Notepad++ v4.0.2\\npp.4.0.2.Installer.exe" /S']; pn++; Hope this helps. -Tony
×
×
  • Create New...