Re: Remote Install Software
You want to make an application that will install these softwares remotely. Correct me if I'm wrong.
You can do this .NET remoting by developing 2 apps: one for the server that will be the remote computer and one for you computer. Of course, you will need administrative rights on the remote computer.
Re: Remote Install Software
Thanks for quick reply...
Actually i have only one Application which will run on Server...
First i create a connection wid any client machine on LAN through ipAddress ,password,username
Then after it i extract the list of installed software from there ....(Done)
Problem:
Now as i have the installed software list on my server Pc.And i wanna installed any missing software from server PC to Client ..
Regards,
Aamir
Re: Remote Install Software
One possible choice would be to transfer the setup files needed for a certain software and run the installer in background ( if the installer package supports command line ) with Process class. For example msiexec arguments: http://msdn2.microsoft.com/En-US/library/aa367988.aspx
Re: Remote Install Software
Bundle of thanks...
Let me Do some Work on ur propose solution ......
Will come 2 u soon if any query ...Hope u wud nt mind...
Cheeeerssssssss
Regards,
Aamir Khurshid
Re: Remote Install Software
Hello ... I have created Connection Remotely but wen i m trying to install software i m getting Exception....
Exception: RPC Server is Unavailable ..Check host name...
if my code is like this
ConnectionOptions connection = new ConnectionOptions();
connection.Authority = "kerberos:" + domain + @"\" + machine;
//connection.Authority = "NTLMdomain:" + domain;
i m geeting Exception ..
But wen i Cooments the line connection.Authority = "kerberos:" + domain + @"\" + machine;
and uncoments line connection.Authority = "NTLMdomain:" + domain;
Then its ok bt its nt meet the requirement ..
And One other thing i dont have Kerbros Policy Folder Acount policies ....
Is their any software i have to install for ...
I m stuck ...No way out .....
Awaiting for kind response ......
Regards,
Aamir