Outlook Banter

Outlook Banter (http://www.outlookbanter.com/)
-   Outlook - Installation (http://www.outlookbanter.com/outlook-installation/)
-   -   Install PRF file on new Windows Profile (ONCE) (http://www.outlookbanter.com/outlook-installation/24098-install-prf-file-new-windows.html)

[email protected] August 16th 06 04:55 PM

Install PRF file on new Windows Profile (ONCE)
 
Hey all, hopefully this is a simple one for you.

I have a PRF file that works great when I run it from the command line.
We are running an Acitve Directory Domain, and using Group Policies.
I have found several ways of running the importprf command on a user
login, but it fires every time they log in (not just for a new windows
profile, or one time per user per machine).

I have read on using the Registry and removing the First-Run value, and
setting the ImportPRF value to a share where the PRF resides, but
again, I cant figure a way in Active Directory to set this Registry
value one time.

This seems like it would be simple to do on each machine for each user,
but I'd like to encorporate this with AD and Group Policies so that it
only fires when the user first logs onto a machine (new windows
profile), or mabye just one time for that user on a machine (even if
the Windows profile exists).


Any help is greatly appreciated.

Thanks,
Sean


Sue Mosher [MVP-Outlook] August 16th 06 05:04 PM

Install PRF file on new Windows Profile (ONCE)
 
A login script could iterate the registry to see if the profile name exists and set the ImportPRF value only if it doesn't exist.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

wrote in message oups.com...
Hey all, hopefully this is a simple one for you.

I have a PRF file that works great when I run it from the command line.
We are running an Acitve Directory Domain, and using Group Policies.
I have found several ways of running the importprf command on a user
login, but it fires every time they log in (not just for a new windows
profile, or one time per user per machine).

I have read on using the Registry and removing the First-Run value, and
setting the ImportPRF value to a share where the PRF resides, but
again, I cant figure a way in Active Directory to set this Registry
value one time.

This seems like it would be simple to do on each machine for each user,
but I'd like to encorporate this with AD and Group Policies so that it
only fires when the user first logs onto a machine (new windows
profile), or mabye just one time for that user on a machine (even if
the Windows profile exists).


Any help is greatly appreciated.

Thanks,
Sean


[email protected] August 16th 06 06:24 PM

Install PRF file on new Windows Profile (ONCE)
 
I did find this on Microsoft.Com if anyone else stumbeled onto the
same problem:

http://support.microsoft.com/?scid=284193


wrote:
Hey all, hopefully this is a simple one for you.

I have a PRF file that works great when I run it from the command line.
We are running an Acitve Directory Domain, and using Group Policies.
I have found several ways of running the importprf command on a user
login, but it fires every time they log in (not just for a new windows
profile, or one time per user per machine).

I have read on using the Registry and removing the First-Run value, and
setting the ImportPRF value to a share where the PRF resides, but
again, I cant figure a way in Active Directory to set this Registry
value one time.

This seems like it would be simple to do on each machine for each user,
but I'd like to encorporate this with AD and Group Policies so that it
only fires when the user first logs onto a machine (new windows
profile), or mabye just one time for that user on a machine (even if
the Windows profile exists).


Any help is greatly appreciated.

Thanks,
Sean



[email protected] August 17th 06 01:23 PM

Install PRF file on new Windows Profile (ONCE)
 
Well i made a vbs script that checked to see if the OFFICE folder is
present, if not, then it runs the importprf script.

This works except that when a new user logs on, windows shuts down the
script because it is still building the profile (i believe). I run
Outlook to see if the changes took effect, and it says that it did not
open successfully last time and if i want to run it in safe mode.

Is there any other way to customize a new user's profile besides
buidling a NETLOGON profile on a network, and running a custom script?

Thanks,

Sean

wrote:
I did find this on Microsoft.Com if anyone else stumbeled onto the
same problem:

http://support.microsoft.com/?scid=284193


wrote:
Hey all, hopefully this is a simple one for you.

I have a PRF file that works great when I run it from the command line.
We are running an Acitve Directory Domain, and using Group Policies.
I have found several ways of running the importprf command on a user
login, but it fires every time they log in (not just for a new windows
profile, or one time per user per machine).

I have read on using the Registry and removing the First-Run value, and
setting the ImportPRF value to a share where the PRF resides, but
again, I cant figure a way in Active Directory to set this Registry
value one time.

This seems like it would be simple to do on each machine for each user,
but I'd like to encorporate this with AD and Group Policies so that it
only fires when the user first logs onto a machine (new windows
profile), or mabye just one time for that user on a machine (even if
the Windows profile exists).


Any help is greatly appreciated.

Thanks,
Sean



Sue Mosher [MVP-Outlook] August 17th 06 03:25 PM

Install PRF file on new Windows Profile (ONCE)
 
Which Office folder are you checking for? I would use a script to check the registry and see if the desired Outlook profile is present.

Maybe there's an error in your script that causes it to shut down.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

wrote in message oups.com...
Well i made a vbs script that checked to see if the OFFICE folder is
present, if not, then it runs the importprf script.

This works except that when a new user logs on, windows shuts down the
script because it is still building the profile (i believe). I run
Outlook to see if the changes took effect, and it says that it did not
open successfully last time and if i want to run it in safe mode.

Is there any other way to customize a new user's profile besides
buidling a NETLOGON profile on a network, and running a custom script?

Thanks,

Sean

wrote:
I did find this on Microsoft.Com if anyone else stumbeled onto the
same problem:

http://support.microsoft.com/?scid=284193


wrote:
Hey all, hopefully this is a simple one for you.

I have a PRF file that works great when I run it from the command line.
We are running an Acitve Directory Domain, and using Group Policies.
I have found several ways of running the importprf command on a user
login, but it fires every time they log in (not just for a new windows
profile, or one time per user per machine).

I have read on using the Registry and removing the First-Run value, and
setting the ImportPRF value to a share where the PRF resides, but
again, I cant figure a way in Active Directory to set this Registry
value one time.

This seems like it would be simple to do on each machine for each user,
but I'd like to encorporate this with AD and Group Policies so that it
only fires when the user first logs onto a machine (new windows
profile), or mabye just one time for that user on a machine (even if
the Windows profile exists).




All times are GMT +1. The time now is 06:20 AM.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com