Mike_g
Guest
Posts: n/a
 
RE: Legacy application installations
Posted: 07-16-2008, 11:08 AM
David,
If I follow your path I need to distribute a batch file to thousands of
computers instead of just using one copy on the mapped drive. And it's sole
purpose is to map drive after you change security context.
There must be a better way!

i have been on the Script Center page before. Are you referring to the
Elevation Power Toys? Of something else.
- Mike

"David Shen [MSFT]" wrote:
> Hi Mike,
>
> I agree with Paul, we cannot "Run as Administrator" of the batch file in
> the mapped driver session since it only elevate the current local user’s
> privilege not the remote user's privilege. However, it is better for us to
> customize a batch file to map the drives locally.
>
> For your convenience, I have list the following link to TechNet Script
> Center which provides some example of the scripts, just for your reference:
>
> TechNet Script Center
> http://www.microsoft.com/technet/scr...r/default.mspx
>
> Hope the issue will be resolved soon.
> David Shen
> Microsoft Online Partner Support
>
>
Reply With Quote
David Shen [MSFT]
Guest
Posts: n/a
 
RE: Legacy application installations
Posted: 07-17-2008, 08:38 AM
Hello Mike,

Thanks for the reply.

According to your description, your purpose is that you want to distribute
the arbortext.msi to thousands of computers instead of just using one copy
on the mapped driver.

Based on the further research, I find a better way to distribute the msi
file, just for your reference.

Analysis and Suggestion:
=========================

We may create a new Group Policy Object on the domain controller, and
configure Software installation to assign or to publish software to all the
computers (Computer Configuration\Software Settings\Software Installation)
within a domain. It is best practice to be able to deploy software based on
group membership. We can link the GPO to the domain level to deploy to all
the computers within the domain. In this way, there is no need for us to
write a script or map a driver.

For you convenience, I have list the general steps to configure the
software installation policy as follow.

General Steps:
===============

1. Create a software package folder as a distribution point

Please note:

If the application installation file resides on the local hard disk of the
server, please do not use a local path. Instead, use the UNC
path of the local computer to indicate the location of the installation
files. An example of UNC path takes the form like
\\servername\sharename\path\filename.msi.

2. Grant "Domain Computers" group with full control both share and NTFS
security permission on the software package folder.

3. Create a Group Policy object (GPO) for the customer application software
deployments.

Please refer to:

How to assign software to a specific group by using Group Policy in Windows
Server 2003
http://support.microsoft.com/kb/324750

4. Deploy file from the shared distribution folder as machine-assigned
Group Policy (Computer Configuration\Software Settings\Software
Installation)

Please refer to:

How to assign software to a specific group by using Group Policy
http://support.microsoft.com/kb/302430

6. After the deployment of Group Policy, please run "gpupdate /force" on
both domain controller and clients to refresh the Group Policy.

7. You may reset the clients to wait for the processing of Group policy to
deploy the customer software.

For more detailed information, you may refer to:

How to use Windows Installer and Group Policy to deploy the VPModule.msi in
an Active Directory domain
http://support.microsoft.com/kb/887405

Hope it helps.

David Shen
Microsoft Online Partner Support

Reply With Quote
Mike_g
Guest
Posts: n/a
 
RE: Legacy application installations
Posted: 07-17-2008, 10:40 AM
David,
We have hundreds of different applications to install over many different
computers.
We only install on the systems that need it and the Group Policy method of
installation would be very inefficient for our needs.
Is there some way to embed into the .cmd file a call to some application
that requests privilege elevation?
Like:
--------------------------------------
:@echo off
\\server\share\elevate.exe
msiexec ...
--------------------------------------


"David Shen [MSFT]" wrote:
> Hello Mike,
>
> Thanks for the reply.
>
> According to your description, your purpose is that you want to distribute
> the arbortext.msi to thousands of computers instead of just using one copy
> on the mapped driver.
>
> Based on the further research, I find a better way to distribute the msi
> file, just for your reference.
>
> Analysis and Suggestion:
> =========================
>
> We may create a new Group Policy Object on the domain controller, and
> configure Software installation to assign or to publish software to all the
> computers (Computer Configuration\Software Settings\Software Installation)
> within a domain. It is best practice to be able to deploy software based on
> group membership. We can link the GPO to the domain level to deploy to all
> the computers within the domain. In this way, there is no need for us to
> write a script or map a driver.
>
> For you convenience, I have list the general steps to configure the
> software installation policy as follow.
>
> General Steps:
> ===============
>
> 1. Create a software package folder as a distribution point
>
> Please note:
>
> If the application installation file resides on the local hard disk of the
> server, please do not use a local path. Instead, use the UNC
> path of the local computer to indicate the location of the installation
> files. An example of UNC path takes the form like
> \\servername\sharename\path\filename.msi.
>
> 2. Grant "Domain Computers" group with full control both share and NTFS
> security permission on the software package folder.
>
> 3. Create a Group Policy object (GPO) for the customer application software
> deployments.
>
> Please refer to:
>
> How to assign software to a specific group by using Group Policy in Windows
> Server 2003
> http://support.microsoft.com/kb/324750
>
> 4. Deploy file from the shared distribution folder as machine-assigned
> Group Policy (Computer Configuration\Software Settings\Software
> Installation)
>
> Please refer to:
>
> How to assign software to a specific group by using Group Policy
> http://support.microsoft.com/kb/302430
>
> 6. After the deployment of Group Policy, please run "gpupdate /force" on
> both domain controller and clients to refresh the Group Policy.
>
> 7. You may reset the clients to wait for the processing of Group policy to
> deploy the customer software.
>
> For more detailed information, you may refer to:
>
> How to use Windows Installer and Group Policy to deploy the VPModule.msi in
> an Active Directory domain
> http://support.microsoft.com/kb/887405
>
> Hope it helps.
>
> David Shen
> Microsoft Online Partner Support
>
>
Reply With Quote
David Shen [MSFT]
Guest
Posts: n/a
 
RE: Legacy application installations
Posted: 07-18-2008, 11:53 AM
Hi Mike,

Is there some way to embed into the .cmd file a call to some application
that requests privilege elevation?

No. Because of the existing of the UAC feature on Windows Vista, we cannot
call the application that requests privilege elevation within a batch file.

You may disable the UAC feature on the Windows Vista boxes or you may logon
these system with local administrator credential to install these
application.

Hope it helps.

David Shen
Microsoft Online Partner Support

Reply With Quote
Mike_g
Guest
Posts: n/a
 
RE: Legacy application installations
Posted: 07-18-2008, 12:15 PM
David,
Can I make an executable then that just calls a .cmd file that will maintain
the elevation or do I need to embed all the dos commands in the executable?
- Mike

"David Shen [MSFT]" wrote:
> Hi Mike,
>
> Is there some way to embed into the .cmd file a call to some application
> that requests privilege elevation?
>
> No. Because of the existing of the UAC feature on Windows Vista, we cannot
> call the application that requests privilege elevation within a batch file.
>
> You may disable the UAC feature on the Windows Vista boxes or you may logon
> these system with local administrator credential to install these
> application.
>
> Hope it helps.
>
> David Shen
> Microsoft Online Partner Support
>
>
Reply With Quote
David Shen [MSFT]
Guest
Posts: n/a
 
RE: Legacy application installations
Posted: 07-21-2008, 12:19 PM
Hi Mike,

You may make an executable then that just calls a .cmd file that will
maintain the elevation.

David Shen
Microsoft Online Partner Support

Reply With Quote
David Shen [MSFT]
Guest
Posts: n/a
 
RE: Legacy application installations
Posted: 07-25-2008, 04:13 AM
Dear Customer,

How's everything going?

I'm wondering if the suggestion has helped or if you have any further
questions. Please feel free to respond to the newsgroups if I can assist
further.

David Shen
Microsoft Online Partner Support

Reply With Quote
David Shen [MSFT]
Guest
Posts: n/a
 
RE: Legacy application installations
Posted: 07-25-2008, 04:13 AM
Dear Customer,

How's everything going?

I'm wondering if the suggestion has helped or if you have any further
questions. Please feel free to respond to the newsgroups if I can assist
further.

David Shen
Microsoft Online Partner Support

Reply With Quote
Mike_g
Guest
Posts: n/a
 
RE: Legacy application installations
Posted: 08-05-2008, 11:53 AM
I have been on vacation the last week and a half so I have not had time to
check on it yet.
"David Shen [MSFT]" wrote:
> Dear Customer,
>
> How's everything going?
>
> I'm wondering if the suggestion has helped or if you have any further
> questions. Please feel free to respond to the newsgroups if I can assist
> further.
>
> David Shen
> Microsoft Online Partner Support
>
>
Reply With Quote
David Shen [MSFT]
Guest
Posts: n/a
 
RE: Legacy application installations
Posted: 08-06-2008, 12:31 PM
Hello Mike,

Thank you for the reply.

I am glad to hear from you now. I notice that you have replied to the
question in the thread of "Legacy application installations" and would like
to suggest that we follow up this issue there when you are free. If
anything is unclear, or you have additional concerns, please feel free to
let me know.

Again, thank you for using our newsgroups and have a great vacation!

David Shen
Microsoft Online Partner Support

Reply With Quote
 
LinkBack Thread Tools Display Modes
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
some Help on installations BetaTester9999 Windows Vista Install & Setup 0 10-17-2006 05:48 AM
legacy: EMM = RAM, bug? Mister Scary Windows XP Games 5 06-01-2005 09:54 AM
How many installations can I do? HowburyPete Windows XP New Users 8 10-08-2003 07:00 PM
Two XP installations William B. Lurie Windows XP Basics 7 08-23-2003 02:25 PM
XP uses 100% of CPU after certain installations boris Windows XP 1 07-30-2003 08:56 PM


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90