Re: [mssms] Adding Customized Branding /Tattoo to Image

2017-03-13 Thread Stuart Watret

Jason would missing the ID part make it fail?

I just tried with just -wmi and -registry as the parameters and it just hung, I 
checked the reg after and no sign of anything.

I gave up trying to run it in ps ise as i couldn’t work out how to pass a 
parameter and life is too short :)

Ta

Stuart

On 13 Mar 2017, at 14:03, Kevin Ray 
<kevinalive...@gmail.com<mailto:kevinalive...@gmail.com>> wrote:

Thanks Jason,

I have tested with default class names to check. Below are the things 
identified. I'm wonder can i fix below things...But most of the things I got it 
what i'm looking for 


In Registry ITLOCAL key is not created.. but i can able to see "OSD_Info" and 
inside parameters of Tasksequence anything wrong my side ?

Also In Registry I would like to add some version of the Build like 10.1 inside 
of "OSD_info" Build version field (as of now its showing blank)

Next time if i change the build I will change the script and it should capture 
the build like 10.2.. I'm trying to keep some buildversions to 
differentiate .. so in future it might be useful for me.




ITLocal not showing in Regedit




But in WMI I can able to see the  ITLocal Class. inside the class i checked the 
task sequence parameters










On Sat, Mar 11, 2017 at 2:02 PM, Jason Sandys 
<ja...@sandys.us<mailto:ja...@sandys.us>> wrote:
The examples are (kind of) listed in the comments at the top of the script. You 
specify either -Registry or -WMI (or both) depending upon where you want info 
written (WMI is preferred because it is trivial to configure ConfigMgr to pick 
it). You also should specify an identifier using the -ID parameter. I usually 
use Build or Deploy or something similar to describe the type of TS; the actual 
TS name and image used (among other things) is saved automatically so no need 
to specify this with the ID.

J


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com>] 
On Behalf Of Kevin Ray
Sent: Saturday, March 11, 2017 9:58 AM
To: mssms <mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>>
Subject: Re: [mssms] Adding Customized Branding /Tattoo to Image

Hi Jason,

I gone through your script. .In Task sequence after SCCM client Package added 
as Powershell Command line script..testing in LAB with default class names.. 
but getting stuck at deployment.. Do i need to pass any parameters with script 
any example please...



On Wed, Mar 8, 2017 at 3:13 PM, Jason Sandys 
<ja...@sandys.us<mailto:ja...@sandys.us>> wrote:
This will do it for you: 
http://home.configmgrftw.com/configmgr-osd-information-script/.

J

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com>] 
On Behalf Of Marable, Mike
Sent: Wednesday, March 8, 2017 1:34 PM
To: mssms <mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>>
Subject: RE: [mssms] Adding Customized Branding /Tattoo to Image

Okay, that’s easy to do.

First, of course you need to decide what specific information you want to store 
in the Registry and where you want to store it.  I would store it under 
HKLM\System so you don’t have to deal with Registry redirection between 32bit 
and 64bit builds.

Second, once you know what you want to track you can start to look at how you 
can collect that data.  For example, if you want the name of the build task 
sequence you can look to the task sequence variables “_SMSTSPackageName” and 
the sequence ID “_SMSTSPackageID”.  SCCM already collects that and does the 
work for you.  Other things you will need to collect yourself with a script, 
such as the start date/time and finish date/time, username of the tech 
building, and assign them to your own task sequence variables.

Finally, at the end of the build you would write the task sequence variables to 
the Registry and you’re done.

That is how we do it.

Mike




From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Kevin Ray
Sent: Wednesday, March 8, 2017 2:11 PM
To: mssms <mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>>
Subject: Re: [mssms] Adding Customized Branding /Tattoo to Image

Yes Mike

On Wed, Mar 8, 2017 at 1:56 PM, Marable, Mike 
<mmara...@med.umich.edu<mailto:mmara...@med.umich.edu>> wrote:
Hi Kevin,

Are you looking to write keys into the Registry to track things like when the 
machine was built, the task sequence name and ID?

Something like this:





From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com>] 
On Behalf Of Kevin Ray
Sent: Wednesday, March 8, 2017 1:25 PM
To: mssms <mssms@lists.myitforum.com&

Re: [mssms] Adding Customized Branding /Tattoo to Image

2017-03-11 Thread Kevin Ray
Hi Jason,

I gone through your script. .In Task sequence after SCCM client Package
added as Powershell Command line script..testing in LAB with default class
names.. but getting stuck at deployment.. Do i need to pass any parameters
with script any example please...


[image: Inline image 1]
On Wed, Mar 8, 2017 at 3:13 PM, Jason Sandys <ja...@sandys.us> wrote:

> This will do it for you: http://home.configmgrftw.com/c
> onfigmgr-osd-information-script/.
>
>
>
> J
>
>
>
> *From:* listsad...@lists.myitforum.com [mailto:listsadmin@lists.myitf
> orum.com] *On Behalf Of *Marable, Mike
> *Sent:* Wednesday, March 8, 2017 1:34 PM
> *To:* mssms <mssms@lists.myitforum.com>
> *Subject:* RE: [mssms] Adding Customized Branding /Tattoo to Image
>
>
>
> Okay, that’s easy to do.
>
>
>
> First, of course you need to decide what specific information you want to
> store in the Registry and where you want to store it.  I would store it
> under HKLM\System so you don’t have to deal with Registry redirection
> between 32bit and 64bit builds.
>
>
>
> Second, once you know what you want to track you can start to look at how
> you can collect that data.  For example, if you want the name of the build
> task sequence you can look to the task sequence variables
> “_SMSTSPackageName” and the sequence ID “_SMSTSPackageID”.  SCCM already
> collects that and does the work for you.  Other things you will need to
> collect yourself with a script, such as the start date/time and finish
> date/time, username of the tech building, and assign them to your own task
> sequence variables.
>
>
>
> Finally, at the end of the build you would write the task sequence
> variables to the Registry and you’re done.
>
>
>
> That is how we do it.
>
>
>
> Mike
>
>
>
>
>
>
>
>
>
> *From:* listsad...@lists.myitforum.com [mailto:listsadmin@lists.myitf
> orum.com <listsad...@lists.myitforum.com>] *On Behalf Of *Kevin Ray
> *Sent:* Wednesday, March 8, 2017 2:11 PM
> *To:* mssms <mssms@lists.myitforum.com>
> *Subject:* Re: [mssms] Adding Customized Branding /Tattoo to Image
>
>
>
> Yes Mike
>
>
>
> On Wed, Mar 8, 2017 at 1:56 PM, Marable, Mike <mmara...@med.umich.edu>
> wrote:
>
> Hi Kevin,
>
>
>
> Are you looking to write keys into the Registry to track things like when
> the machine was built, the task sequence name and ID?
>
>
>
> Something like this:
>
>
>
>
>
>
>
>
>
> *From:* listsad...@lists.myitforum.com [mailto:listsadmin@lists.myitf
> orum.com] *On Behalf Of *Kevin Ray
> *Sent:* Wednesday, March 8, 2017 1:25 PM
> *To:* mssms <mssms@lists.myitforum.com>
> *Subject:* Re: [mssms] Adding Customized Branding /Tattoo to Image
>
>
>
> any help
>
>
>
> On Tue, Mar 7, 2017 at 11:08 AM, Kevin Ray <kevinalive...@gmail.com>
> wrote:
>
> Hi All,
>
>
>
> I have captured my windows10 image(.wim file) with MDT includes custum all
> required applications.
>
>
>
> I would like to do further more enhancement while depploying in SCCM with
> adding Custumized Branding /Tatto
>
>
>
> Like Custumed registry where it should capture basic things like
> installation date,time,user,Task sequence ID,Build number etc.
>
>
>
> Any help for quick references /guide
>
>
>
>
>
>
>
> **
> Electronic Mail is not secure, may not be read every day, and should not
> be used for urgent or sensitive issues
>
>
>
>
>
>
>
> **
> Electronic Mail is not secure, may not be read every day, and should not
> be used for urgent or sensitive issues
>
>
>
>





RE: [mssms] Adding Customized Branding /Tattoo to Image

2017-03-08 Thread Jason Sandys
This will do it for you: 
http://home.configmgrftw.com/configmgr-osd-information-script/.

J

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Marable, Mike
Sent: Wednesday, March 8, 2017 1:34 PM
To: mssms <mssms@lists.myitforum.com>
Subject: RE: [mssms] Adding Customized Branding /Tattoo to Image

Okay, that’s easy to do.

First, of course you need to decide what specific information you want to store 
in the Registry and where you want to store it.  I would store it under 
HKLM\System so you don’t have to deal with Registry redirection between 32bit 
and 64bit builds.

Second, once you know what you want to track you can start to look at how you 
can collect that data.  For example, if you want the name of the build task 
sequence you can look to the task sequence variables “_SMSTSPackageName” and 
the sequence ID “_SMSTSPackageID”.  SCCM already collects that and does the 
work for you.  Other things you will need to collect yourself with a script, 
such as the start date/time and finish date/time, username of the tech 
building, and assign them to your own task sequence variables.

Finally, at the end of the build you would write the task sequence variables to 
the Registry and you’re done.

That is how we do it.

Mike




From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Kevin Ray
Sent: Wednesday, March 8, 2017 2:11 PM
To: mssms <mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>>
Subject: Re: [mssms] Adding Customized Branding /Tattoo to Image

Yes Mike

On Wed, Mar 8, 2017 at 1:56 PM, Marable, Mike 
<mmara...@med.umich.edu<mailto:mmara...@med.umich.edu>> wrote:
Hi Kevin,

Are you looking to write keys into the Registry to track things like when the 
machine was built, the task sequence name and ID?

Something like this:

[cid:image001.png@01D29816.243A2AE0]



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com>] 
On Behalf Of Kevin Ray
Sent: Wednesday, March 8, 2017 1:25 PM
To: mssms <mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>>
Subject: Re: [mssms] Adding Customized Branding /Tattoo to Image

any help

On Tue, Mar 7, 2017 at 11:08 AM, Kevin Ray 
<kevinalive...@gmail.com<mailto:kevinalive...@gmail.com>> wrote:
Hi All,

I have captured my windows10 image(.wim file) with MDT includes custum all 
required applications.

I would like to do further more enhancement while depploying in SCCM with 
adding Custumized Branding /Tatto

Like Custumed registry where it should capture basic things like installation 
date,time,user,Task sequence ID,Build number etc.

Any help for quick references /guide




**
Electronic Mail is not secure, may not be read every day, and should not be 
used for urgent or sensitive issues




**
Electronic Mail is not secure, may not be read every day, and should not be 
used for urgent or sensitive issues




RE: [mssms] Adding Customized Branding /Tattoo to Image

2017-03-08 Thread Marable, Mike
Okay, that’s easy to do.

First, of course you need to decide what specific information you want to store 
in the Registry and where you want to store it.  I would store it under 
HKLM\System so you don’t have to deal with Registry redirection between 32bit 
and 64bit builds.

Second, once you know what you want to track you can start to look at how you 
can collect that data.  For example, if you want the name of the build task 
sequence you can look to the task sequence variables “_SMSTSPackageName” and 
the sequence ID “_SMSTSPackageID”.  SCCM already collects that and does the 
work for you.  Other things you will need to collect yourself with a script, 
such as the start date/time and finish date/time, username of the tech 
building, and assign them to your own task sequence variables.

Finally, at the end of the build you would write the task sequence variables to 
the Registry and you’re done.

That is how we do it.

Mike




From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Kevin Ray
Sent: Wednesday, March 8, 2017 2:11 PM
To: mssms <mssms@lists.myitforum.com>
Subject: Re: [mssms] Adding Customized Branding /Tattoo to Image

Yes Mike

On Wed, Mar 8, 2017 at 1:56 PM, Marable, Mike 
<mmara...@med.umich.edu<mailto:mmara...@med.umich.edu>> wrote:
Hi Kevin,

Are you looking to write keys into the Registry to track things like when the 
machine was built, the task sequence name and ID?

Something like this:

[cid:image001.png@01D29817.B6B5C040]



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com>] 
On Behalf Of Kevin Ray
Sent: Wednesday, March 8, 2017 1:25 PM
To: mssms <mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>>
Subject: Re: [mssms] Adding Customized Branding /Tattoo to Image

any help

On Tue, Mar 7, 2017 at 11:08 AM, Kevin Ray 
<kevinalive...@gmail.com<mailto:kevinalive...@gmail.com>> wrote:
Hi All,

I have captured my windows10 image(.wim file) with MDT includes custum all 
required applications.

I would like to do further more enhancement while depploying in SCCM with 
adding Custumized Branding /Tatto

Like Custumed registry where it should capture basic things like installation 
date,time,user,Task sequence ID,Build number etc.

Any help for quick references /guide




**
Electronic Mail is not secure, may not be read every day, and should not be 
used for urgent or sensitive issues



**
Electronic Mail is not secure, may not be read every day, and should not be 
used for urgent or sensitive issues 



Re: [mssms] Adding Customized Branding /Tattoo to Image

2017-03-08 Thread Kevin Ray
Yes Mike

On Wed, Mar 8, 2017 at 1:56 PM, Marable, Mike <mmara...@med.umich.edu>
wrote:

> Hi Kevin,
>
>
>
> Are you looking to write keys into the Registry to track things like when
> the machine was built, the task sequence name and ID?
>
>
>
> Something like this:
>
>
>
>
>
>
>
>
>
> *From:* listsad...@lists.myitforum.com [mailto:listsadmin@lists.
> myitforum.com] *On Behalf Of *Kevin Ray
> *Sent:* Wednesday, March 8, 2017 1:25 PM
> *To:* mssms <mssms@lists.myitforum.com>
> *Subject:* Re: [mssms] Adding Customized Branding /Tattoo to Image
>
>
>
> any help
>
>
>
> On Tue, Mar 7, 2017 at 11:08 AM, Kevin Ray <kevinalive...@gmail.com>
> wrote:
>
> Hi All,
>
>
>
> I have captured my windows10 image(.wim file) with MDT includes custum all
> required applications.
>
>
>
> I would like to do further more enhancement while depploying in SCCM with
> adding Custumized Branding /Tatto
>
>
>
> Like Custumed registry where it should capture basic things like
> installation date,time,user,Task sequence ID,Build number etc.
>
>
>
> Any help for quick references /guide
>
>
>
>
>
>
>
> **
> Electronic Mail is not secure, may not be read every day, and should not
> be used for urgent or sensitive issues
>
>




RE: [mssms] Adding Customized Branding /Tattoo to Image

2017-03-08 Thread Marable, Mike
Hi Kevin,

Are you looking to write keys into the Registry to track things like when the 
machine was built, the task sequence name and ID?

Something like this:

[cid:image002.png@01D29812.79D6CFC0]



From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Kevin Ray
Sent: Wednesday, March 8, 2017 1:25 PM
To: mssms <mssms@lists.myitforum.com>
Subject: Re: [mssms] Adding Customized Branding /Tattoo to Image

any help

On Tue, Mar 7, 2017 at 11:08 AM, Kevin Ray 
<kevinalive...@gmail.com<mailto:kevinalive...@gmail.com>> wrote:
Hi All,

I have captured my windows10 image(.wim file) with MDT includes custum all 
required applications.

I would like to do further more enhancement while depploying in SCCM with 
adding Custumized Branding /Tatto

Like Custumed registry where it should capture basic things like installation 
date,time,user,Task sequence ID,Build number etc.

Any help for quick references /guide



**
Electronic Mail is not secure, may not be read every day, and should not be 
used for urgent or sensitive issues 



Re: [mssms] Adding Customized Branding /Tattoo to Image

2017-03-08 Thread Kevin Ray
any help

On Tue, Mar 7, 2017 at 11:08 AM, Kevin Ray  wrote:

> Hi All,
>
> I have captured my windows10 image(.wim file) with MDT includes custum all
> required applications.
>
> I would like to do further more enhancement while depploying in SCCM with
> adding Custumized Branding /Tatto
>
> Like Custumed registry where it should capture basic things like
> installation date,time,user,Task sequence ID,Build number etc.
>
> Any help for quick references /guide
>
>