Re: [mssms] RE: SCCM 2012 R2 and PXE boot

2015-03-17 Thread Ryan
You could also do this as a query in the console.

On Tue, Mar 17, 2015 at 11:32 AM, Daniel Ratliff 
wrote:

>  I use this SQL query to look for multiple records by MAC in the
> database. I made it into a SSRS report for easy consumption. Just modify
> the MAC at the end.
>
>
>
> select SYS.netbios_name0 WKID, SD.itemkey ResourceID, MAC.MAC_Addresses0,
> SD.SMS_Unique_Identifier0,SD.Hardware_ID0,SD.Name0,SD.Unknown0,SD.
> Obsolete0,SD.Active0,SD.Decommissioned0,SD.Creation_Date0,SD.SMBIOS_GUID0
>
> from System_DISC SD FULL JOIN
>
>v_r_system SYS ON SD.itemkey = SYS.resourceid FULL JOIN
>
>System_MAC_Addres_ARR MAC ON SD.itemkey = MAC.ItemKey
>
> where MAC_Addresses0 = '54:ee:75:1f:15:04'
>
>
>
>
>
> *Daniel Ratliff*
>
>
>
> *From:* listsad...@lists.myitforum.com [mailto:
> listsad...@lists.myitforum.com] *On Behalf Of *Michael Kimbley II
> *Sent:* Tuesday, March 17, 2015 12:19 PM
> *To:* mssms@lists.myitforum.com
> *Subject:* RE: [mssms] RE: SCCM 2012 R2 and PXE boot
>
>
>
> Make sure the system you are attempting to PXE boot is in an appropriate
> device collection for the Task Sequence you want to run in a PXE process.
> If it is a new system (or unknown) to SCCM, make sure you are setup to
> handle unknown systems.
>
> One thing I noticed going to R2 (and I will admit it is probably an RTFM
> moment) the PXE Boot for OSD isn't very clear when dealing with known
> systems that are not in an OSD device collection. I saw either the generic
> "ConfigMgr looking for Policy" and/or the "TFTP.[...]" response in the PXE
> boot process.
>
> I chased networking as the issue. .. .WireShark, etc. .. .disabled/enabled
> PXE on the DP. .. .rebuilt/redeployed the DP. .. .and it turned out to be a
> system with a two device entries in ConfigMgr. Found it by searching by MAC.
>
> Hope this helps.
> M
>  --
>
> From: ed.aldr...@1e.com
> To: mssms@lists.myitforum.com
> Subject: [mssms] RE: SCCM 2012 R2 and PXE boot
> Date: Tue, 17 Mar 2015 15:42:14 +
>
> Dunno if the details in this blog post will be of any help. There is quite
> a bit of background info on the subject of PxE booting and DHCP.
>
>
>
>
> http://www.1e.com/blogs/2014/09/29/osd-pxe-ip-helpers-dhcp-options-isnt-there-a-better-way/
>
>
>
> FWIW
>
>
>
> Ed Aldrich | Channel Solutions Engineer | *1**E*
>
> +1 (401) 924-2293
>
> [image: Description: Description: cid:image011.png@01CAD56A.EFDE3F90] Ent
> Cli Mgmt (2003-2014)
>
> Please consider the environment before printing this e-mail
>
>
>
> *From:* listsad...@lists.myitforum.com [
> mailto:listsad...@lists.myitforum.com ] *On
> Behalf Of *David McSpadden
> *Sent:* den 21 januari 2015 14:36
> *To:* mssms@lists.myitforum.com
> *Subject:* [mssms] RE: SCCM 2012 R2 and PXE boot
>
>
>
> Can ping both the FQDN and IP address of the DP.
>
>
>
>
>
> *From:* listsad...@lists.myitforum.com [
> mailto:listsad...@lists.myitforum.com ] *On
> Behalf Of *CM, ArvindKumar
> *Sent:* Wednesday, January 21, 2015 8:29 AM
> *To:* mssms@lists.myitforum.com
> *Subject:* [mssms] RE: SCCM 2012 R2 and PXE boot
>
>
>
> Looks like the PXE boot server is not responding.  PC may get an IP from
> DHCP but it will only boot when it get boot info from PXE server.
>
>
>
> Normally when PC receives the PXE boot server info from DHCP (option 66
> and 67) it will request the PXE server (unicast) for boot information.
> Please check if you can reach /ping the PXE server from the PC lan.
>
>
>
> *From:* listsad...@lists.myitforum.com [
> mailto:listsad...@lists.myitforum.com ] *On
> Behalf Of *David McSpadden
> *Sent:* Wednesday, January 21, 2015 6:35 PM
> *To:* mssms@lists.myitforum.com
> *Subject:* [mssms] SCCM 2012 R2 and PXE boot
>
>
>
> I am trying to PXE boot my first workstation to SCMM 2012 R2.
>
> My PXE boot on my workstation sees my DHCP server.  I have added 066 and
> 067 to the DHCP options but the workstation fails to boot.
>
> It gets an address from the DHCP server then it trys to TFTP??
>
> Then it fails.
>
> I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM
> 2012 server??
>
> I have never booted to PXE in the past so I am a total virgin in this area.
>
>
>
> This e-mail and any files transmitted with it are property of Indiana
> Members Credit Union, are confidential, and are intended solely for the use
> of the individual or entity to whom this e-mail is addressed. If you are
> not one of the named recipient(s) or otherwise have reason to believe that
> you have received this message in

RE: [mssms] RE: SCCM 2012 R2 and PXE boot

2015-03-17 Thread Daniel Ratliff
I use this SQL query to look for multiple records by MAC in the database. I 
made it into a SSRS report for easy consumption. Just modify the MAC at the end.

select SYS.netbios_name0 WKID, SD.itemkey ResourceID, MAC.MAC_Addresses0, 
SD.SMS_Unique_Identifier0,SD.Hardware_ID0,SD.Name0,SD.Unknown0,SD.Obsolete0,SD.Active0,SD.Decommissioned0,SD.Creation_Date0,SD.SMBIOS_GUID0
from System_DISC SD FULL JOIN
   v_r_system SYS ON SD.itemkey = SYS.resourceid FULL JOIN
   System_MAC_Addres_ARR MAC ON SD.itemkey = MAC.ItemKey
where MAC_Addresses0 = '54:ee:75:1f:15:04'


Daniel Ratliff

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Michael Kimbley II
Sent: Tuesday, March 17, 2015 12:19 PM
To: mssms@lists.myitforum.com
Subject: RE: [mssms] RE: SCCM 2012 R2 and PXE boot

Make sure the system you are attempting to PXE boot is in an appropriate device 
collection for the Task Sequence you want to run in a PXE process. If it is a 
new system (or unknown) to SCCM, make sure you are setup to handle unknown 
systems.

One thing I noticed going to R2 (and I will admit it is probably an RTFM 
moment) the PXE Boot for OSD isn't very clear when dealing with known systems 
that are not in an OSD device collection. I saw either the generic "ConfigMgr 
looking for Policy" and/or the "TFTP.[...]" response in the PXE boot process.

I chased networking as the issue. .. .WireShark, etc. .. .disabled/enabled PXE 
on the DP. .. .rebuilt/redeployed the DP. .. .and it turned out to be a system 
with a two device entries in ConfigMgr. Found it by searching by MAC.

Hope this helps.
M

From: ed.aldr...@1e.com<mailto:ed.aldr...@1e.com>
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot
Date: Tue, 17 Mar 2015 15:42:14 +
Dunno if the details in this blog post will be of any help. There is quite a 
bit of background info on the subject of PxE booting and DHCP.

http://www.1e.com/blogs/2014/09/29/osd-pxe-ip-helpers-dhcp-options-isnt-there-a-better-way/

FWIW

Ed Aldrich | Channel Solutions Engineer | 1E
+1 (401) 924-2293
[Description: Description: cid:image011.png@01CAD56A.EFDE3F90] Ent Cli Mgmt 
(2003-2014)
Please consider the environment before printing this e-mail

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: den 21 januari 2015 14:36
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Can ping both the FQDN and IP address of the DP.


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of CM, ArvindKumar
Sent: Wednesday, January 21, 2015 8:29 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Looks like the PXE boot server is not responding.  PC may get an IP from DHCP 
but it will only boot when it get boot info from PXE server.

Normally when PC receives the PXE boot server info from DHCP (option 66 and 67) 
it will request the PXE server (unicast) for boot information.  Please check if 
you can reach /ping the PXE server from the PC lan.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 6:35 PM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.

This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.

Please consider the environment before printing this email.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise 

[mssms] RE: SCCM 2012 R2 and PXE boot

2015-03-17 Thread Andreas Hammarskjöld
PXE Anywhere Ed, not installing PXE Everywhere. ;-)

//A

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Ed Aldrich
Sent: den 17 mars 2015 16:42
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Dunno if the details in this blog post will be of any help. There is quite a 
bit of background info on the subject of PxE booting and DHCP.

http://www.1e.com/blogs/2014/09/29/osd-pxe-ip-helpers-dhcp-options-isnt-there-a-better-way/

FWIW

Ed Aldrich | Channel Solutions Engineer | 1E
+1 (401) 924-2293
[Description: Description: cid:image011.png@01CAD56A.EFDE3F90] Ent Cli Mgmt 
(2003-2014)
Please consider the environment before printing this e-mail

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: den 21 januari 2015 14:36
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Can ping both the FQDN and IP address of the DP.


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of CM, ArvindKumar
Sent: Wednesday, January 21, 2015 8:29 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Looks like the PXE boot server is not responding.  PC may get an IP from DHCP 
but it will only boot when it get boot info from PXE server.

Normally when PC receives the PXE boot server info from DHCP (option 66 and 67) 
it will request the PXE server (unicast) for boot information.  Please check if 
you can reach /ping the PXE server from the PC lan.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 6:35 PM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.



This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.







Legal Notice: This email is intended only for the person(s) to whom it is 
addressed. If you are not an intended recipient and have received this message 
in error, please notify the sender immediately by replying to this email or 
calling +44(0) 2083269015 (UK) or +1 866 592 4214 (USA). This email and any 
attachments may be privileged and/or confidential. The unauthorized use, 
disclosure, copying or printing of any information it contains is strictly 
prohibited. The opinions expressed in this email are those of the author and do 
not necessarily represent the views of 1E Ltd. Nothing in this email will 
operate to bind 1E to any order or other contract.






RE: [mssms] RE: SCCM 2012 R2 and PXE boot

2015-03-17 Thread Michael Kimbley II
Make sure the system you are attempting to PXE boot is in an appropriate device 
collection for the Task Sequence you want to run in a PXE process. If it is a 
new system (or unknown) to SCCM, make sure you are setup to handle unknown 
systems. 

One thing I noticed going to R2 (and I will admit it is probably an RTFM 
moment) the PXE Boot for OSD isn't very clear when dealing with known systems 
that are not in an OSD device collection. I saw either the generic "ConfigMgr 
looking for Policy" and/or the "TFTP.[...]" response in the PXE boot process.

I chased networking as the issue. .. .WireShark, etc. .. .disabled/enabled PXE 
on the DP. .. .rebuilt/redeployed the DP. .. .and it turned out to be a system 
with a two device entries in ConfigMgr. Found it by searching by MAC.

Hope this helps.
M
From: ed.aldr...@1e.com
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot
Date: Tue, 17 Mar 2015 15:42:14 +









Dunno if the details in this blog post will be of any help. There is quite a 
bit of background info on the subject of PxE booting and DHCP.
 
http://www.1e.com/blogs/2014/09/29/osd-pxe-ip-helpers-dhcp-options-isnt-there-a-better-way/
 
FWIW
 

Ed Aldrich | Channel Solutions
 Engineer | 1E
+1 (401)
 924-2293
 Ent
 Cli Mgmt (2003-2014)
Please consider the environment before printing this e-mail

 


From: 
listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com]
On Behalf Of David McSpadden

Sent: den 21 januari 2015 14:36

To: mssms@lists.myitforum.com

Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


 
Can ping both the FQDN and IP address of the DP.
 
 


From:
listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com]
On Behalf Of CM, ArvindKumar

Sent: Wednesday, January 21, 2015 8:29 AM

To: mssms@lists.myitforum.com

Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


 
Looks like the PXE boot server is not responding.  PC may get an IP from DHCP 
but it will only boot when it get boot info from PXE server.
 
Normally when PC receives the PXE boot server info from DHCP (option 66 and 67) 
it will request the PXE server (unicast) for boot information.  Please check if 
you can reach /ping the PXE server from the PC lan.
 


From: 
listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com]
On Behalf Of David McSpadden

Sent: Wednesday, January 21, 2015 6:35 PM

To: mssms@lists.myitforum.com

Subject: [mssms] SCCM 2012 R2 and PXE boot


 
I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.
 
This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or
 otherwise have reason to believe that you have received this message in error, 
please notify the sender and delete this message immediately from your 
computer. Any other use, retention, dissemination, forwarding, printing, or 
copying of this email is strictly
 prohibited.

 
Please consider the environment before printing this email.

 
 
This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or
 otherwise have reason to believe that you have received this message in error, 
please notify the sender and delete this message immediately from your 
computer. Any other use, retention, dissemination, forwarding, printing, or 
copying of this email is strictly
 prohibited.

 
Please consider the environment before printing this email.

 
 
 








Legal Notice: This email is intended only for the person(s) to whom it is 
addressed. If you are not an intended recipient and have received this message 
in error, please notify the sender immediately by replying to this email or 
calling +44(0) 2083269015 (UK)
 or +1 866 592 4214 (USA). This email and any attachments may be privileged 
and/or confidential. The unauthorized use, disclosure, copying or printing of 
any information it contains is strictly prohibited. The opinions expressed in 
this email are those of the
 author and do not necessarily represent the views of 1E Ltd. Nothing in this 
email will operate to bind 1E to any order or other contract.






  




[mssms] RE: SCCM 2012 R2 and PXE boot

2015-03-17 Thread Phil Wilcock
..and if you don't like reading, or just plain can't be bothered - Junior did a 
movie as well!

Describes the problem and fix/workaround quite nicely. Bear in mind that your 
DHCP server needs to be WS2012 for this to work..

Using DHCP to Boot WDS BIOS & UEFI

https://youtu.be/k5E97ndlRog

cheers

Phil

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Andreas Hammarskjöld
Sent: 17 March 2015 15:09
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

A little white paper on the subject, more posts coming the coming days:

http://2pintsoftware.com/new-whitepaper-using-dhcp-to-control-uefi-bios-pxe-booting/

//A

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Andreas Hammarskjöld
Sent: den 21 januari 2015 14:41
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Whats 66 and 67 set to?

PXE Log will not show anything as its only responding on DHCP packages, of 
which it will get nothing depending on setup.

Consider using IP helpers instead of 66/67 of you can.

//A
http://2pintsoftware.com

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: den 21 januari 2015 14:36
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Can ping both the FQDN and IP address of the DP.


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of CM, ArvindKumar
Sent: Wednesday, January 21, 2015 8:29 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Looks like the PXE boot server is not responding.  PC may get an IP from DHCP 
but it will only boot when it get boot info from PXE server.

Normally when PC receives the PXE boot server info from DHCP (option 66 and 67) 
it will request the PXE server (unicast) for boot information.  Please check if 
you can reach /ping the PXE server from the PC lan.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 6:35 PM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.



This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.








[mssms] RE: SCCM 2012 R2 and PXE boot

2015-03-17 Thread Ed Aldrich
Dunno if the details in this blog post will be of any help. There is quite a 
bit of background info on the subject of PxE booting and DHCP.

http://www.1e.com/blogs/2014/09/29/osd-pxe-ip-helpers-dhcp-options-isnt-there-a-better-way/

FWIW

Ed Aldrich | Channel Solutions Engineer | 1E
+1 (401) 924-2293
[Description: Description: cid:image011.png@01CAD56A.EFDE3F90] Ent Cli Mgmt 
(2003-2014)
Please consider the environment before printing this e-mail

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: den 21 januari 2015 14:36
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Can ping both the FQDN and IP address of the DP.


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of CM, ArvindKumar
Sent: Wednesday, January 21, 2015 8:29 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Looks like the PXE boot server is not responding.  PC may get an IP from DHCP 
but it will only boot when it get boot info from PXE server.

Normally when PC receives the PXE boot server info from DHCP (option 66 and 67) 
it will request the PXE server (unicast) for boot information.  Please check if 
you can reach /ping the PXE server from the PC lan.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 6:35 PM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.



This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.







Legal Notice: This email is intended only for the person(s) to whom it is 
addressed. If you are not an intended recipient and have received this message 
in error, please notify the sender immediately by replying to this email or 
calling +44(0) 2083269015 (UK) or +1 866 592 4214 (USA). This email and any 
attachments may be privileged and/or confidential. The unauthorized use, 
disclosure, copying or printing of any information it contains is strictly 
prohibited. The opinions expressed in this email are those of the author and do 
not necessarily represent the views of 1E Ltd. Nothing in this email will 
operate to bind 1E to any order or other contract.





[mssms] RE: SCCM 2012 R2 and PXE boot

2015-03-17 Thread Andreas Hammarskjöld
A little white paper on the subject, more posts coming the coming days:

http://2pintsoftware.com/new-whitepaper-using-dhcp-to-control-uefi-bios-pxe-booting/

//A

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Andreas Hammarskjöld
Sent: den 21 januari 2015 14:41
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Whats 66 and 67 set to?

PXE Log will not show anything as its only responding on DHCP packages, of 
which it will get nothing depending on setup.

Consider using IP helpers instead of 66/67 of you can.

//A
http://2pintsoftware.com

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: den 21 januari 2015 14:36
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Can ping both the FQDN and IP address of the DP.


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of CM, ArvindKumar
Sent: Wednesday, January 21, 2015 8:29 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Looks like the PXE boot server is not responding.  PC may get an IP from DHCP 
but it will only boot when it get boot info from PXE server.

Normally when PC receives the PXE boot server info from DHCP (option 66 and 67) 
it will request the PXE server (unicast) for boot information.  Please check if 
you can reach /ping the PXE server from the PC lan.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 6:35 PM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.



This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.







RE: [mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread Bradnan, Jerry
If your actually starting the task sequence, then, if you have enabled command 
line support on your boot WIM, you should be able to type F8 on your test 
system to open a command prompt. Check to be sure the system is getting an IP 
Address (ipconfig /all).

Also, you can check the SMSTS.LOG for errors. You can find it in one of the 
following locations, depending on how far your TS is getting:

During OS Deployment
Before your hard drive is formatted and partitioned
X:\windows\temp\smstslog\

After your hard drive is partitioned formatted
X:\smstslog\ and then is in C:\_SMSTaskSequence\logs\smstslog\

Within Windows
before the SCCM agent is installed:
C:\_SMSTaskSequence\logs\smstslog\

after the SCCM agent installed:
C:\windows\system32\ccm\logs\smstslog\

When the Task Sequence completes
For x86
C:\windows\system32\ccm\logs\

For x64
C:\windows\SysWOW64\ccm\logs\

Check here on how to enable command line support if you have not already:
https://technet.microsoft.com/en-us/library/hh397288.aspx#BKMK_BootImagePropertyPage


Jerry

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 1:19 PM
To: mssms@lists.myitforum.com
Subject: RE: [mssms] RE: SCCM 2012 R2 and PXE boot

Almost there.
Starts the PXE install of windows 7 sp1 x64 and bombs out close to the end.
x80004005.
Looks like I need to add a drivers package?


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Andreas Hammarskjöld
Sent: Wednesday, January 21, 2015 11:19 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: RE: [mssms] RE: SCCM 2012 R2 and PXE boot

Checkbox on boot image properties to deploy to PXE points!

Sent from my Windows Phone

From: Bradnan, Jerry<mailto:jerry.brad...@bluechip-llc.com>
Sent: ‎2015-‎01-‎21 16:35
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot
No, you only need to deploy it to the DP. Only reference the Boot image you 
need in the TS.

Jerry

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 10:24 AM
To: 'mssms@lists.myitforum.com'
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Do I make the x86 available in the task sequence in Software Library?


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Gushue, William
Sent: Wednesday, January 21, 2015 10:12 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

I am pretty sure this is true.  We had just recently rebuilt the PXE setup and 
left these out.  One of our sites had these images installed and the others did 
not.  Only the site with both boot images available had successful booting.  
The others did not until we re-added both boot images.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Bradley, Matt
Sent: Wednesday, January 21, 2015 9:45 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Microsoft support once told me that you had to have both an x86 and x64 boot 
image available, even if you weren’t using the x86.  Don’t know if that’s true 
or not.  Also, make sure you’re fully patched to CU3.  CU3 fixed an issue where 
it wouldn’t always serve up the proper architecture.  That one in particular 
bit me hard, as it kept serving up x86 boot images to UEFI devices, and of 
course, that won’t work.  CU3 fixed that.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 7:34 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 a

RE: [mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread David McSpadden
Almost there.
Starts the PXE install of windows 7 sp1 x64 and bombs out close to the end.
x80004005.
Looks like I need to add a drivers package?


From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Andreas Hammarskjöld
Sent: Wednesday, January 21, 2015 11:19 AM
To: mssms@lists.myitforum.com
Subject: RE: [mssms] RE: SCCM 2012 R2 and PXE boot

Checkbox on boot image properties to deploy to PXE points!

Sent from my Windows Phone

From: Bradnan, Jerry<mailto:jerry.brad...@bluechip-llc.com>
Sent: ‎2015-‎01-‎21 16:35
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot
No, you only need to deploy it to the DP. Only reference the Boot image you 
need in the TS.

Jerry

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 10:24 AM
To: 'mssms@lists.myitforum.com'
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Do I make the x86 available in the task sequence in Software Library?


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Gushue, William
Sent: Wednesday, January 21, 2015 10:12 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

I am pretty sure this is true.  We had just recently rebuilt the PXE setup and 
left these out.  One of our sites had these images installed and the others did 
not.  Only the site with both boot images available had successful booting.  
The others did not until we re-added both boot images.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Bradley, Matt
Sent: Wednesday, January 21, 2015 9:45 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Microsoft support once told me that you had to have both an x86 and x64 boot 
image available, even if you weren’t using the x86.  Don’t know if that’s true 
or not.  Also, make sure you’re fully patched to CU3.  CU3 fixed an issue where 
it wouldn’t always serve up the proper architecture.  That one in particular 
bit me hard, as it kept serving up x86 boot images to UEFI devices, and of 
course, that won’t work.  CU3 fixed that.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 7:34 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you’re trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or ent

RE: [mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread Andreas Hammarskjöld
Checkbox on boot image properties to deploy to PXE points!

Sent from my Windows Phone

From: Bradnan, Jerry<mailto:jerry.brad...@bluechip-llc.com>
Sent: ‎2015-‎01-‎21 16:35
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

No, you only need to deploy it to the DP. Only reference the Boot image you 
need in the TS.

Jerry

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 10:24 AM
To: 'mssms@lists.myitforum.com'
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Do I make the x86 available in the task sequence in Software Library?


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Gushue, William
Sent: Wednesday, January 21, 2015 10:12 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

I am pretty sure this is true.  We had just recently rebuilt the PXE setup and 
left these out.  One of our sites had these images installed and the others did 
not.  Only the site with both boot images available had successful booting.  
The others did not until we re-added both boot images.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Bradley, Matt
Sent: Wednesday, January 21, 2015 9:45 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Microsoft support once told me that you had to have both an x86 and x64 boot 
image available, even if you weren’t using the x86.  Don’t know if that’s true 
or not.  Also, make sure you’re fully patched to CU3.  CU3 fixed an issue where 
it wouldn’t always serve up the proper architecture.  That one in particular 
bit me hard, as it kept serving up x86 boot images to UEFI devices, and of 
course, that won’t work.  CU3 fixed that.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 7:34 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you’re trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is 

[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread Bradnan, Jerry
No, you only need to deploy it to the DP. Only reference the Boot image you 
need in the TS.

Jerry

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 10:24 AM
To: 'mssms@lists.myitforum.com'
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Do I make the x86 available in the task sequence in Software Library?


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Gushue, William
Sent: Wednesday, January 21, 2015 10:12 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

I am pretty sure this is true.  We had just recently rebuilt the PXE setup and 
left these out.  One of our sites had these images installed and the others did 
not.  Only the site with both boot images available had successful booting.  
The others did not until we re-added both boot images.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Bradley, Matt
Sent: Wednesday, January 21, 2015 9:45 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Microsoft support once told me that you had to have both an x86 and x64 boot 
image available, even if you weren’t using the x86.  Don’t know if that’s true 
or not.  Also, make sure you’re fully patched to CU3.  CU3 fixed an issue where 
it wouldn’t always serve up the proper architecture.  That one in particular 
bit me hard, as it kept serving up x86 boot images to UEFI devices, and of 
course, that won’t work.  CU3 fixed that.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 7:34 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you’re trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, an

[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread David McSpadden
Getting a 500 error currently for me.

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Bradley, Matt
Sent: Wednesday, January 21, 2015 10:24 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

It's available online: http://support.microsoft.com/kb/2994331

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:48 AM
To: 'mssms@lists.myitforum.com'
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Still trying to get to Support. To get the CU3 download link.


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Bradley, Matt
Sent: Wednesday, January 21, 2015 9:45 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Microsoft support once told me that you had to have both an x86 and x64 boot 
image available, even if you weren't using the x86.  Don't know if that's true 
or not.  Also, make sure you're fully patched to CU3.  CU3 fixed an issue where 
it wouldn't always serve up the proper architecture.  That one in particular 
bit me hard, as it kept serving up x86 boot images to UEFI devices, and of 
course, that won't work.  CU3 fixed that.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 7:34 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you're trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your comput

[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread Bradley, Matt
It's available online: http://support.microsoft.com/kb/2994331

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:48 AM
To: 'mssms@lists.myitforum.com'
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Still trying to get to Support. To get the CU3 download link.


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Bradley, Matt
Sent: Wednesday, January 21, 2015 9:45 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Microsoft support once told me that you had to have both an x86 and x64 boot 
image available, even if you weren't using the x86.  Don't know if that's true 
or not.  Also, make sure you're fully patched to CU3.  CU3 fixed an issue where 
it wouldn't always serve up the proper architecture.  That one in particular 
bit me hard, as it kept serving up x86 boot images to UEFI devices, and of 
course, that won't work.  CU3 fixed that.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 7:34 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you're trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.



This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intende

[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread David McSpadden
Do I make the x86 available in the task sequence in Software Library?


From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Gushue, William
Sent: Wednesday, January 21, 2015 10:12 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

I am pretty sure this is true.  We had just recently rebuilt the PXE setup and 
left these out.  One of our sites had these images installed and the others did 
not.  Only the site with both boot images available had successful booting.  
The others did not until we re-added both boot images.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Bradley, Matt
Sent: Wednesday, January 21, 2015 9:45 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Microsoft support once told me that you had to have both an x86 and x64 boot 
image available, even if you weren’t using the x86.  Don’t know if that’s true 
or not.  Also, make sure you’re fully patched to CU3.  CU3 fixed an issue where 
it wouldn’t always serve up the proper architecture.  That one in particular 
bit me hard, as it kept serving up x86 boot images to UEFI devices, and of 
course, that won’t work.  CU3 fixed that.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 7:34 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you’re trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Plea

[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread Gushue, William
I am pretty sure this is true.  We had just recently rebuilt the PXE setup and 
left these out.  One of our sites had these images installed and the others did 
not.  Only the site with both boot images available had successful booting.  
The others did not until we re-added both boot images.

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Bradley, Matt
Sent: Wednesday, January 21, 2015 9:45 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Microsoft support once told me that you had to have both an x86 and x64 boot 
image available, even if you weren’t using the x86.  Don’t know if that’s true 
or not.  Also, make sure you’re fully patched to CU3.  CU3 fixed an issue where 
it wouldn’t always serve up the proper architecture.  That one in particular 
bit me hard, as it kept serving up x86 boot images to UEFI devices, and of 
course, that won’t work.  CU3 fixed that.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 7:34 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you’re trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.







This e-mail message is privileged, confidential and subject to
copyright. Any unauthorized use or disclosure is prohibited.

Le contenu du présent courriel est privilégié, confidentiel et
soumis à des droits d'auteu

[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread Andreas Hammarskjöld
If you are using option 66 and 67 the PSP won't come into play until wdsnbp.com 
is downloaded, started, and then contacts the WDS/PSP. That's the time where 
you see some admin text and then once contact is made: "Configuration Manager 
is looking for policy...

Did you really have the x86 file in the path smsboot folder?

Another thing to test is to set the boot loader file to boot\x86\wdsnbp.com 
(which is the WDS boot loader that always exist).

If that doesn't work, its likely network/firewall etc.

//A

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of David McSpadden
Sent: den 21 januari 2015 15:48
To: 'mssms@lists.myitforum.com'
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Still trying to get to Support. To get the CU3 download link.


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Bradley, Matt
Sent: Wednesday, January 21, 2015 9:45 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Microsoft support once told me that you had to have both an x86 and x64 boot 
image available, even if you weren't using the x86.  Don't know if that's true 
or not.  Also, make sure you're fully patched to CU3.  CU3 fixed an issue where 
it wouldn't always serve up the proper architecture.  That one in particular 
bit me hard, as it kept serving up x86 boot images to UEFI devices, and of 
course, that won't work.  CU3 fixed that.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 7:34 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you're trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwi

[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread David McSpadden
Still trying to get to Support. To get the CU3 download link.


From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Bradley, Matt
Sent: Wednesday, January 21, 2015 9:45 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Microsoft support once told me that you had to have both an x86 and x64 boot 
image available, even if you weren't using the x86.  Don't know if that's true 
or not.  Also, make sure you're fully patched to CU3.  CU3 fixed an issue where 
it wouldn't always serve up the proper architecture.  That one in particular 
bit me hard, as it kept serving up x86 boot images to UEFI devices, and of 
course, that won't work.  CU3 fixed that.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 7:34 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you're trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.

Please consider the environment before printing this email.





[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread Bradley, Matt
Microsoft support once told me that you had to have both an x86 and x64 boot 
image available, even if you weren't using the x86.  Don't know if that's true 
or not.  Also, make sure you're fully patched to CU3.  CU3 fixed an issue where 
it wouldn't always serve up the proper architecture.  That one in particular 
bit me hard, as it kept serving up x86 boot images to UEFI devices, and of 
course, that won't work.  CU3 fixed that.

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 7:34 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you're trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.






[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread Andreas Hammarskjöld
And if that doesn't work, I would enable WDS logging as per this blog article 
and see what you get. (It's easier with IP Helpers as the smspxe.log is full of 
stuff.

Enable debug logging for WDS: 
http://2pintsoftware.com/enabling-wds-debug-logging/

//A


From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Bradnan, Jerry
Sent: den 21 januari 2015 15:20
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

You mention that only the x64 boot image has been deployed to your PXE server. 
Whether you use them or not, You must have both an x86 and an x64 PXE-enabled 
boot image deployed to the distribution point for the PXE deployment to succeed.

Check out the "Distributing Boot Images to the Distribution Point" section on 
this page: https://technet.microsoft.com/en-us/library/hh397405.aspx

Try deploying both to your DP and see if you have the same issue.

Jerry

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:43 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Of course, your WDS needs to be working in general.  But once  you have it 
going then you will need to deploy your TS to the Unknown Computers collection 
so your unknown machine can PXE boot.


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:34 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you're trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your

[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread David McSpadden
Will do.
Let you know in a bit.

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Bradnan, Jerry
Sent: Wednesday, January 21, 2015 9:20 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

You mention that only the x64 boot image has been deployed to your PXE server. 
Whether you use them or not, You must have both an x86 and an x64 PXE-enabled 
boot image deployed to the distribution point for the PXE deployment to succeed.

Check out the "Distributing Boot Images to the Distribution Point" section on 
this page: https://technet.microsoft.com/en-us/library/hh397405.aspx

Try deploying both to your DP and see if you have the same issue.

Jerry

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:43 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Of course, your WDS needs to be working in general.  But once  you have it 
going then you will need to deploy your TS to the Unknown Computers collection 
so your unknown machine can PXE boot.


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:34 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you're trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


*

[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread Bradnan, Jerry
You mention that only the x64 boot image has been deployed to your PXE server. 
Whether you use them or not, You must have both an x86 and an x64 PXE-enabled 
boot image deployed to the distribution point for the PXE deployment to succeed.

Check out the "Distributing Boot Images to the Distribution Point" section on 
this page: https://technet.microsoft.com/en-us/library/hh397405.aspx

Try deploying both to your DP and see if you have the same issue.

Jerry

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:43 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Of course, your WDS needs to be working in general.  But once  you have it 
going then you will need to deploy your TS to the Unknown Computers collection 
so your unknown machine can PXE boot.


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:34 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you're trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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






[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread David McSpadden
66 is the fqdn of the dp
67 is smsboot\x86\wdsnbp.com


From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Andreas Hammarskjöld
Sent: Wednesday, January 21, 2015 8:41 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Whats 66 and 67 set to?

PXE Log will not show anything as its only responding on DHCP packages, of 
which it will get nothing depending on setup.

Consider using IP helpers instead of 66/67 of you can.

//A
http://2pintsoftware.com

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: den 21 januari 2015 14:36
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Can ping both the FQDN and IP address of the DP.


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of CM, ArvindKumar
Sent: Wednesday, January 21, 2015 8:29 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Looks like the PXE boot server is not responding.  PC may get an IP from DHCP 
but it will only boot when it get boot info from PXE server.

Normally when PC receives the PXE boot server info from DHCP (option 66 and 67) 
it will request the PXE server (unicast) for boot information.  Please check if 
you can reach /ping the PXE server from the PC lan.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 6:35 PM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.



This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.

Please consider the environment before printing this email.





[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread Marable, Mike
Of course, your WDS needs to be working in general.  But once  you have it 
going then you will need to deploy your TS to the Unknown Computers collection 
so your unknown machine can PXE boot.


From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:34 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you're trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.

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





[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread Marable, Mike
#3 and #4 might be your problem.

If your TS is deployed only to All Systems then only machines that already 
exist in SCCM will see it.  A computer unknown to SCCM will not be a member of 
All Systems.

If your machine is unknown to SCCM then it will not see your task sequence.  
When you attempt to PXE boot SCCM will first check to see what task sequences 
are deployed to collections that the machine belongs to.  If one is found then 
SCCM will allow it to PXE boot.

In your case since the machine is unknown to sCCM and your task sequence is 
only deployed to All Systems SCCM will not allow it to PXE boot.

Deploy your task sequence to the Unknown Computers collection.  Then try it.  
From what you describe I think that should get you going

Mike



From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:34 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot


1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you're trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.

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





[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread Andreas Hammarskjöld
Whats 66 and 67 set to?

PXE Log will not show anything as its only responding on DHCP packages, of 
which it will get nothing depending on setup.

Consider using IP helpers instead of 66/67 of you can.

//A
http://2pintsoftware.com

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of David McSpadden
Sent: den 21 januari 2015 14:36
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Can ping both the FQDN and IP address of the DP.


From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of CM, ArvindKumar
Sent: Wednesday, January 21, 2015 8:29 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Looks like the PXE boot server is not responding.  PC may get an IP from DHCP 
but it will only boot when it get boot info from PXE server.

Normally when PC receives the PXE boot server info from DHCP (option 66 and 67) 
it will request the PXE server (unicast) for boot information.  Please check if 
you can reach /ping the PXE server from the PC lan.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 6:35 PM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.



This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.






[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread David McSpadden
Can ping both the FQDN and IP address of the DP.


From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of CM, ArvindKumar
Sent: Wednesday, January 21, 2015 8:29 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

Looks like the PXE boot server is not responding.  PC may get an IP from DHCP 
but it will only boot when it get boot info from PXE server.

Normally when PC receives the PXE boot server info from DHCP (option 66 and 67) 
it will request the PXE server (unicast) for boot information.  Please check if 
you can reach /ping the PXE server from the PC lan.

From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 6:35 PM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.

Please consider the environment before printing this email.





[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread David McSpadden
1.   Just the default x64 image on the PXE enabled DP.

2.   It is assigned to this sequence. (Using Windows Noob set of 
instructions.)

3.   It is deployed to all systems.

4.   Unknown machine at this point.



Reviewing the SCCM 2012 server.  WDS is getting a 1067 when trying to start.

No WDS, no PXE.

GoogleFU shows KB2905002 helps but that hotfix is unavailable at the moment 
from Microsoft.


PXE-032 TFTP timeout
PXE-   Abort
^ Makes sense with WDS being down.



From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of Marable, Mike
Sent: Wednesday, January 21, 2015 8:27 AM
To: mssms@lists.myitforum.com
Subject: [mssms] RE: SCCM 2012 R2 and PXE boot

What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you're trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com<mailto:listsad...@lists.myitforum.com> 
[mailto:listsad...@lists.myitforum.com] On Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com<mailto:mssms@lists.myitforum.com>
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.


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

This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.

Please consider the environment before printing this email.





[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread CM, ArvindKumar
Looks like the PXE boot server is not responding.  PC may get an IP from DHCP 
but it will only boot when it get boot info from PXE server.

Normally when PC receives the PXE boot server info from DHCP (option 66 and 67) 
it will request the PXE server (unicast) for boot information.  Please check if 
you can reach /ping the PXE server from the PC lan.

From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 6:35 PM
To: mssms@lists.myitforum.com
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.






[mssms] RE: SCCM 2012 R2 and PXE boot

2015-01-21 Thread Marable, Mike
What exactly is happening when it fails?

Are you getting a PXEAbort, or is it attempting and the boot process is failing 
at some point?

Some basics to check.

1.   Do you have both the 64bit and 32bit boot images on your PXE enabled 
DP?

2.   Is one of those boot images the one assigned to your task sequence?

3.   Is your task sequence deployed/advertised to a collection?

4.   Is the machine you're trying to PXE boot a member of that collection?



From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On 
Behalf Of David McSpadden
Sent: Wednesday, January 21, 2015 8:05 AM
To: mssms@lists.myitforum.com
Subject: [mssms] SCCM 2012 R2 and PXE boot

I am trying to PXE boot my first workstation to SCMM 2012 R2.
My PXE boot on my workstation sees my DHCP server.  I have added 066 and 067 to 
the DHCP options but the workstation fails to boot.
It gets an address from the DHCP server then it trys to TFTP??
Then it fails.
I see it in the DHCP lease but I see nothing in the SMSPXE.log on the SCCM 2012 
server??
I have never booted to PXE in the past so I am a total virgin in this area.


This e-mail and any files transmitted with it are property of Indiana Members 
Credit Union, are confidential, and are intended solely for the use of the 
individual or entity to whom this e-mail is addressed. If you are not one of 
the named recipient(s) or otherwise have reason to believe that you have 
received this message in error, please notify the sender and delete this 
message immediately from your computer. Any other use, retention, 
dissemination, forwarding, printing, or copying of this email is strictly 
prohibited.


Please consider the environment before printing this email.

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