• RSS
  • Twitter
  • FaceBook

Welcome to ISAserver.org

Forums | Register | Login | My Profile | Inbox | RSS RSS icon | My Subscription | My Forums | Address Book | Member List | Search | FAQ | Ticket List | Log Out

How upgrade isa clients from 2000 to 2004 automatically

Users viewing this topic: none

Logged in as: Guest
  Printable Version
All Forums >> [ISA Server 2004 General ] >> General >> How upgrade isa clients from 2000 to 2004 automatically Page: [1]
Login
Message << Older Topic   Newer Topic >>
How upgrade isa clients from 2000 to 2004 automatically - 17.Feb.2006 11:08:51 AM   
nezar_bh

 

Posts: 4
Joined: 26.May2004
From: Bahrain
Status: offline
hi,

i am planning to upgrade my isa 2k to 2k4, but i'm really concerned of how to replace old clients with 2k4. i deployed old clients manually and plan to use GPOs to push new ones. anyone can help or guide?

Regards,
NAZ
Post #: 1
RE: How upgrade isa clients from 2000 to 2004 automatic... - 24.Feb.2006 7:26:18 PM   
elmajdal

 

Posts: 6022
Joined: 16.Sep.2004
From: Lebanese in Kuwait
Status: offline
hi nezar,

check this :
http://forums.isaserver.org/m_270024500/tm.htm

HTH

(in reply to nezar_bh)
Post #: 2
RE: How upgrade isa clients from 2000 to 2004 automatic... - 24.Feb.2006 7:37:03 PM   
LLigetfa

 

Posts: 2187
Joined: 10.Aug.2004
From: fort frances.on.ca
Status: offline
quote:

i deployed old clients manually

In that case, I don't think that link is of much value.
AFAIK, you need to first script the uninstall of the old 2000 client.  to do that, the uninstaller will need to access the original share from where it was installed.  Hopefully, the share still exists.

Here is a KiX script that will crawl you network and report back.  You can modify it to also pull the UninstallString from the reg and then SHELL out to it.
BREAK ON
$BaseKey = 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{8C7A59A8-9ABE-459A-9A93-08C281A4A264}'
$objConnection = CreateObject("ADODB.Connection")
$objCommand =   CreateObject("ADODB.Command")
$objConnection.Provider = "ADsDSOObject"
$objConnection.Open("Active Directory Provider")
$objCommand.ActiveConnection = $objConnection
$objCommand.CommandText = 
  "SELECT Name FROM " 
  + "'LDAP://OU=Computers,OU=FF,OU=yada,dc=yada,dc=local'"
  + " WHERE objectCategory='computer'"
$objCommand.Properties("Page Size").Value = 100
$objCommand.Properties("Search Scope").Value = 2
$objCommand.Properties("Cache Results").Value = (not 1)
$objRecordSet = $objCommand.Execute()
$objRecordSet.MoveFirst
while not $objRecordSet.EOF
  $curComputer = $objRecordSet.Fields("Name").Value
  '.'
  IF Ping($curComputer)
     $InstallSource = ReadValue('\\'+$curComputer+'\'+$BaseKey,'InstallSource')
     If $InstallSource
        'InstallSource = '+$InstallSource ?
     EndIf
  EndIf
  ;DoX($curComputer)
  $objRecordSet.MoveNext
Loop

;===================
Function Ping($PC)
 Dim $PC
 Shell'%comspec% /c ping -n 1 '+$PC+' >nul'
 $Ping = NOT @error
EndFunction




_____________________________

The School of Hard Knocks is a mean teacher. She gives the exam before the lesson.

(in reply to elmajdal)
Post #: 3
RE: How upgrade isa clients from 2000 to 2004 automatic... - 24.Feb.2006 7:40:49 PM   
elmajdal

 

Posts: 6022
Joined: 16.Sep.2004
From: Lebanese in Kuwait
Status: offline
This is Helpful also ,
 
True silent install of client
http://forums.isaserver.org/True_silent_install_of_client/m_410002100/tm.htm

Regards,
Tarek

(in reply to LLigetfa)
Post #: 4

Page:   [1] << Older Topic    Newer Topic >>
All Forums >> [ISA Server 2004 General ] >> General >> How upgrade isa clients from 2000 to 2004 automatically Page: [1]
Jump to:

New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts