RE: Very weird file rename issue

2013-04-24 Thread Damien Solodow
What's odd is that it only occurs on network drives, not local. 

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

-Original Message-
From: Angus Scott-Fleming [mailto:angu...@geoapps.com] 
Sent: Tuesday, April 23, 2013 8:24 PM
To: NT System Admin Issues
Subject: Re: Very weird file rename issue

On 23 Apr 2013 at 20:02, Damien Solodow  wrote:

 That matches the description. Was hoping there was a fix. J

That issue has been around since the advent of long filenames (Windows 95?) ... 
you can't have two files with the same name but different case in the same 
folder.  Windows treats FileName.TxT and FileNAME.TXT as the same 
internally.
--
Angus Scott-Fleming
GeoApps, Tucson, Arizona
1-520-290-5038
Security Blog: http://geoapps.com/





~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: Very weird file rename issue

2013-04-23 Thread Damien Solodow
That matches the description. Was hoping there was a fix. :)

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Webster [mailto:webs...@carlwebster.com]
Sent: Tuesday, April 23, 2013 3:59 PM
To: NT System Admin Issues
Subject: RE: Very weird file rename issue

Is this it?  http://support.microsoft.com/kb/953945

Thanks


Webster

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Subject: Very weird file rename issue

I've encountered a very odd issue around renaming files on a network drive.
The file is in the user's redirected My Documents, and they are the owner of 
said file and have Full Control for it in the NTFS permissions.

When they try to rename the file to replace a lowercase letter with the same 
letter in uppercase, they get a message that says You need permission to 
perform this action. You require permission for OUR_DOMAIN\Their.username to 
make changes to this file.

However, if they rename the file and replace that letter with something 
different, it's fine.

So for example, the file is called 'firstName.txt' and they try to rename it to 
'FirstName.txt' it will throw the error. But if they rename it to 
'LirstName.txt' it's happen. They can then rename it to 'FirstName.txt' and 
it's fine.

The clients are all Windows 7 Enterprise x64 SP1, but I have seen this on 
remote file servers that are Windows 2003 as well as 2008 R2. It doesn't seem 
to matter what the file type is (text, WordDoc, etc), and doesn't happen on 
local drives.

Anyone seen this oddity before?

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

Testing

2013-04-22 Thread Damien Solodow
Been quite quiet for a few days. Maybe everyone said frak it and went home...

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


RE: PowerShell noob help

2013-04-16 Thread Damien Solodow
No, employeeNumber and employeeID are part of the default AD schema.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Guyer, Don [mailto:dgu...@che.org]
Sent: Tuesday, April 16, 2013 3:39 PM
To: NT System Admin Issues
Subject: RE: PowerShell noob help

What is Employeenumber, a custom attribute in AD?

Regards,

Don Guyer
Catholic Health East - Information Technology
Enterprise Directory  Messaging Services
3805 West Chester Pike, Suite 100, Newtown Square, Pa  19073
email: dgu...@che.orgmailto:dgu...@che.org
Office:  610.550.3595 | Cell: 610.955.6528 | Fax: 610.271.9440
For immediate assistance, please open a Service Desk ticket or call the 
helpdesk @ 610-492-3839.
[Description: Description: Description: InfoService-Logo240]

From: Candee [mailto:can...@gmail.com]
Sent: Tuesday, April 16, 2013 3:26 PM
To: NT System Admin Issues
Subject: Re: PowerShell noob help

So... now that you mention it. ;)
I'm knee deep in the first real-world task of creating a powershell script.
I will be happy to accept a nudge in the right direction (or a cluex4, if I'm 
missing the obvious)

The script imports user data from a csv; and uses that data to create their 
username and email address. Then it checks if the username / email is in use; 
gives an error if it does, creates the user or mailbox if it doesn't.
It also updates attributes, one being the employee number.
I need to export the newly created usernames, emails, and the employee number.
I've created an array that adds each new user, and then is exported to a csv.
Everything works, except the employeenumber, which is what HR is using as the 
primary key.

 The array is
$createdusers +@()
and then:
  $createdusers += $Newuser
  $createdusers|select displayname,name,email,employeenumber 
|export-csv C:\temp\scripts\tryagain.csv

Any ideas to get the employeenumber to export?
The other thing is this pulls the email, even if the user doesn't get a mailbox.
Thanks all.
Candee

On Tue, Apr 16, 2013 at 2:11 PM, Ben Scott 
mailvor...@gmail.commailto:mailvor...@gmail.com wrote:
On Tue, Apr 16, 2013 at 12:57 PM, James Rankin 
kz2...@googlemail.commailto:kz2...@googlemail.com wrote:
 Ben, you're a wizard, that worked first time out :-)
  I am but a humble student.  Indeed, I'm getting my feet wet with
PoSh for real use for the first time these past few weeks.  Part of
the reason I did this was to learn how to do it.  I had to learn
Select-String last week, but didn't know how to retrieve captured
groups yet, nor how to write to the registry.  So we both learned some
things!

  It helps that I had the web at my end of the thread.  :-)

-- Ben

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

Confidentiality Notice:
This e-mail, including any attachments is the
property of Catholic Health East and is intended
for the sole use of the intended recipient(s).
It may contain information that is privileged and
confidential.  Any unauthorized review, use,
disclosure, or distribution is prohibited. If you are
not the intended recipient, please delete this message, and
reply to the sender regarding the error in a separate email.


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmininline: image001.jpg

RE: GPOs back from the dead

2013-04-02 Thread Damien Solodow
Sounds like you have some sysvol replication issues. DCDiag should be your 
friend here.
In general, those ntfrs_ folders are from replication conflicts so you can 
usually delete them safely. 

I'd check your replication topology for sysvol (maybe dead links or an old DC 
still in there) as well as your File Replication Service event logs on the 
domain controllers to see what replication errors are being thrown.


DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

-Original Message-
From: Bill Songstad [mailto:bsongs...@gmail.com] 
Sent: Tuesday, April 02, 2013 1:23 PM
To: NT System Admin Issues
Subject: GPOs back from the dead

Hi folks.  I have an issue that I can't seem to pin down and am hoping someone 
here can help out.  I recently inherited a W2K3 domain with about 20 DCs - some 
W2K3 some W2K8R2.  The Default Domain Controller's policy is largely empty.  
However, at some point in the past, the Default Domain Controller's policy had 
dozens of settings.  I recently moved a number of DCs into another container 
where the Default Domain Controllers policy was applied and enforced above a 
policy to temporarily change some WSUS settings.  However, some of the DCs 
started applying the old (years old...) Default Domain Controllers policy.  
RSOP.msc revealed the dozens of policies from the old Default Domain 
Controllers policy being applied.  Then when I moved the DC back to its 
original container and ran gpupdate /target:computer /force, the policy was 
updated to the current policy and related problems went away.

Checking the sysvol folder on all of the DCs for policies referencing the old 
settings I discovered that 17 of 20 DCs have a secedit folder in sysvol 
\Policies\{6AC1786C-016F-11D2-945F-00C04fB984F9}\MACHINE\Microsoft\Windows
NT with the old policies configured.  There are also 3 to 5 folders named 
secedit_ntfrs_  that do not have the settings or any settings for that 
matter.  The other 3 DCs do not have the secedit folder at all, but they do 
have the secedit_ntfrs_ folders.

So, I have two questions.  1) Why did these settings suddenly get applied?  I 
mean the same Default Domain Controllers Policy was linked and enforced in both 
containers.

and

2) How do I exorcise these old settings?  Just delete the Secedit folders with 
the old data?  Delete the gptTmpl.inf files with the old data?  Something else? 
 I'm a little fearful of blowing things out of the sysvol folder even if they 
are wrong.  I guess I'm a little fuzzy on the replication process.

Thanks for any insight,

Bill

~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: Recommendations for DNS/SSL provider

2013-02-26 Thread Damien Solodow
The issues raised by the team member who started the discussion center around 
some of their practices (obnoxious/exploitive commercials, support for SOPA, 
etc). I'm not really seeing those as business driving decisions, but there are 
other issues that do annoy me like their less than friendly website, the 
required intermediate certificates, and the fact that most things seem to have 
two sets of SSL instructions, one for GoDaddy and one for everyone else. :)

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

-Original Message-
From: Joseph L. Casale [mailto:jcas...@activenetwerx.com] 
Sent: Monday, February 25, 2013 9:52 PM
To: NT System Admin Issues
Subject: RE: Recommendations for DNS/SSL provider



 There is currently some discussion about moving away from them due to 
various  concerns around them (not just technical issues).



Alright, you can't just leave us there:) What's the issue? I have a few 
companies setup with them?


jlc
~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: Recommendations for DNS/SSL provider

2013-02-26 Thread Damien Solodow
I really like what I'm seeing for DigiCert, but my concern is that the price 
point may be an issue given that our current (or RapidSSL) are significantly 
lower.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Brian Desmond [mailto:br...@briandesmond.com]
Sent: Tuesday, February 26, 2013 11:37 AM
To: NT System Admin Issues
Subject: RE: Recommendations for DNS/SSL provider

DigiCert for certs hands down. I can't comment on DNS providers.

Thanks,
Brian Desmond
br...@briandesmond.commailto:br...@briandesmond.com

w - 312.625.1438 | c - 312.731.3132

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Sent: Monday, February 25, 2013 2:25 PM
To: NT System Admin Issues
Subject: Recommendations for DNS/SSL provider

Currently we are using GoDaddy for our SSL certs, domain registration and 
parking/forwarding of some domains.
Our main DNS zones are hosted internally, but we use them to point/redirect 
various domains to our main ones.

There is currently some discussion about moving away from them due to various 
concerns around them (not just technical issues).

I wanted to see of anyone had suggestions/recommendations on alternatives that 
aren't going to trigger a huge price jump.
Are we going to be better off having a provider/company for SSL and another for 
DNS, or are there good options that provide both?

As far as certificates, so far I'm liking the looks of DigiCert and RapidSSL 
but am open to options.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE
500 North Meridian St
Suite 500
Indianapolis, IN 46204-1213
www.harrison.eduhttp://www.harrison.edu/


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: VMWare snapshot issue

2013-02-04 Thread Damien Solodow
Do you see the snapshots from PowerCLI?

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Tom Miller [mailto:tmil...@sfgtrust.com]
Sent: Monday, February 04, 2013 11:30 AM
To: NT System Admin Issues
Subject: RE: VMWare snapshot issue

They don't appear in snapshot manager.  But I can select the consolidate 
option.  After an hour or so is when I get the input/output error.

From: Richard McClary [mailto:richard.mccl...@aspca.org]
Sent: Monday, February 04, 2013 11:11 AM
To: NT System Admin Issues
Subject: RE: VMWare snapshot issue

Have you started at the oldest snapshot and deleted (rather than consolidate)?  
 To delete each snapshot may take some time - perhaps hours!

From: Tom Miller [mailto:tmil...@sfgtrust.com]
Sent: Monday, February 04, 2013 9:49 AM
To: NT System Admin Issues
Subject: VMWare snapshot issue

Hi Folks,

VMWare question for you VMWare gurus:  I'm running ESX 5.0, vShpere client 5.0. 
 I  have one server that has many snapshots.  It is probably because BackupExec 
wasn't able to delete the snaphot properly after the vm backup.  This is only 
an issue on this server.  When I browse the datastore -- server name, I see at 
least 10 snapshots.  I've tried to consolidate the snapshots via the client, 
but each time I get an i/o error.

Suggestions or is this a call to support?

Thanks,
Tom

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


The information contained in this e-mail, and any attachments hereto, is from 
The American Society for the Prevention of Cruelty to Animals(r) (ASPCA(r)) and 
is intended only for use by the addressee(s) named herein and may contain 
legally privileged and/or confidential information. If you are not the intended 
recipient of this e-mail, you are hereby notified that any dissemination, 
distribution, copying or use of the contents of this e-mail, and any 
attachments hereto, is strictly prohibited. If you have received this e-mail in 
error, please immediately notify me by reply email and permanently delete the 
original and any copy of this e-mail and any printout thereof.


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: VMWare snapshot issue

2013-02-04 Thread Damien Solodow
But that doesn't answer my question. You can't delete the snapshots by browsing 
the datastore, but you can delete them via PowerCLI. This would allow you to 
delete the snapshots one or two at a time to try and workaround the issue since 
consolidate fails.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Tom Miller [mailto:tmil...@sfgtrust.com]
Sent: Monday, February 04, 2013 11:59 AM
To: NT System Admin Issues
Subject: RE: VMWare snapshot issue

I see them when I browse the datastore.

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Sent: Monday, February 04, 2013 11:37 AM
To: NT System Admin Issues
Subject: RE: VMWare snapshot issue

Do you see the snapshots from PowerCLI?

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Tom Miller [mailto:tmil...@sfgtrust.com]
Sent: Monday, February 04, 2013 11:30 AM
To: NT System Admin Issues
Subject: RE: VMWare snapshot issue

They don't appear in snapshot manager.  But I can select the consolidate 
option.  After an hour or so is when I get the input/output error.

From: Richard McClary [mailto:richard.mccl...@aspca.org]
Sent: Monday, February 04, 2013 11:11 AM
To: NT System Admin Issues
Subject: RE: VMWare snapshot issue

Have you started at the oldest snapshot and deleted (rather than consolidate)?  
 To delete each snapshot may take some time - perhaps hours!

From: Tom Miller [mailto:tmil...@sfgtrust.com]
Sent: Monday, February 04, 2013 9:49 AM
To: NT System Admin Issues
Subject: VMWare snapshot issue

Hi Folks,

VMWare question for you VMWare gurus:  I'm running ESX 5.0, vShpere client 5.0. 
 I  have one server that has many snapshots.  It is probably because BackupExec 
wasn't able to delete the snaphot properly after the vm backup.  This is only 
an issue on this server.  When I browse the datastore -- server name, I see at 
least 10 snapshots.  I've tried to consolidate the snapshots via the client, 
but each time I get an i/o error.

Suggestions or is this a call to support?

Thanks,
Tom

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


The information contained in this e-mail, and any attachments hereto, is from 
The American Society for the Prevention of Cruelty to Animals(r) (ASPCA(r)) and 
is intended only for use by the addressee(s) named herein and may contain 
legally privileged and/or confidential information. If you are not the intended 
recipient of this e-mail, you are hereby notified that any dissemination, 
distribution, copying or use of the contents of this e-mail, and any 
attachments hereto, is strictly prohibited. If you have received this e-mail in 
error, please immediately notify me by reply email and permanently delete the 
original and any copy of this e-mail and any printout thereof.


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Robocopy reliability

2013-02-04 Thread Damien Solodow
*snerk*
Did you point out that the robo in robocopy was short for robust and that it 
was made and named so because of shortcomings in copy? :)

Ask if he'd prefer xcopy. ;)

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Tigran K [mailto:tigr...@gmail.com]
Sent: Monday, February 04, 2013 1:49 PM
To: NT System Admin Issues
Subject: Re: Robocopy reliability

He was saying we should use just plain old copy.

-T

On Mon, Feb 4, 2013 at 10:11 AM, Matthew W. Ross 
mr...@ephrataschools.orgmailto:mr...@ephrataschools.org wrote:
I have never had a problem with Robocopy. It did exactly what I told it to do 
and gave me detailed information on what it did. I could not ask for more from 
a command line copy utility.

I'm sensing that your Boss has a bias, perhaps due to a bad experience he had 
previously. If so, what does _he_ recommend?

Maybe he has some awesome software I've never heard of. (It wouldn't be the 
first time!)


--Matt Ross
Ephrata School District


- Original Message -
From: Tom Miller
[mailto:tmil...@sfgtrust.commailto:tmil...@sfgtrust.com]
To: NT System Admin Issues
[mailto:ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com]
Sent: Mon, 04 Feb 2013
09:08:33 -0800
Subject: RE: Robocopy reliability


 I've used it many times for file migration moves and even for permissions
 copies.  Just this past weekend I migrated a pretty complex old Windows 2008
 server shared to Windows 2008 R2 this past weekend.  I didn't copy
 permissions since they were a mess.

 The only errors I've seen were my own, usually syntax or spelling.

 What are you trying to do?

 From: Tigran K [mailto:tigr...@gmail.commailto:tigr...@gmail.com]
 Sent: Monday, February 04, 2013 11:34 AM
 To: NT System Admin Issues
 Subject: Robocopy reliability

 Having a discussion with the boss on how we should do something I suggested
 robocopy. His reply was a strict NO. Reasoning was that it's not reliable.
 He said I've seen it break.

 So my question is have you seen it break? Is robocopy any more or less
 reliable than built in copy? I did point out that robocopy is built in to
 windows as well at least for Windows7. Didn't seem to help.

 ~ Finally, powerful endpoint security that ISN'T a resource hog! ~
 ~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

 ---
 To manage subscriptions click here:
 http://lyris.sunbelt-software.com/read/my_forums/
 or send an email to
 listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
 with the body: unsubscribe ntsysadmin

 ~ Finally, powerful endpoint security that ISN'T a resource hog! ~
 ~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

 ---
 To manage subscriptions click here:
 http://lyris.sunbelt-software.com/read/my_forums/
 or send an email to 
 listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
 with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: VMWare snapshot issue

2013-02-04 Thread Damien Solodow
Sure; once you've fired up PowerCLI you'll need to connect to vCenter:
Connect-VIServer -server VCENTER_NAME_HERE

Now get the list of snapshots for the VM:
Get-Snapshot -VM VM_NAME_HERE

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Tom Miller [mailto:tmil...@sfgtrust.com]
Sent: Monday, February 04, 2013 4:25 PM
To: NT System Admin Issues
Subject: RE: VMWare snapshot issue

Can you tell me the commands off-hand?  I'm fairly new to VMWare and am still 
learning.

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Sent: Monday, February 04, 2013 12:06 PM
To: NT System Admin Issues
Subject: RE: VMWare snapshot issue

But that doesn't answer my question. You can't delete the snapshots by browsing 
the datastore, but you can delete them via PowerCLI. This would allow you to 
delete the snapshots one or two at a time to try and workaround the issue since 
consolidate fails.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Tom Miller [mailto:tmil...@sfgtrust.com]
Sent: Monday, February 04, 2013 11:59 AM
To: NT System Admin Issues
Subject: RE: VMWare snapshot issue

I see them when I browse the datastore.

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Sent: Monday, February 04, 2013 11:37 AM
To: NT System Admin Issues
Subject: RE: VMWare snapshot issue

Do you see the snapshots from PowerCLI?

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Tom Miller [mailto:tmil...@sfgtrust.com]
Sent: Monday, February 04, 2013 11:30 AM
To: NT System Admin Issues
Subject: RE: VMWare snapshot issue

They don't appear in snapshot manager.  But I can select the consolidate 
option.  After an hour or so is when I get the input/output error.

From: Richard McClary [mailto:richard.mccl...@aspca.org]
Sent: Monday, February 04, 2013 11:11 AM
To: NT System Admin Issues
Subject: RE: VMWare snapshot issue

Have you started at the oldest snapshot and deleted (rather than consolidate)?  
 To delete each snapshot may take some time - perhaps hours!

From: Tom Miller [mailto:tmil...@sfgtrust.com]
Sent: Monday, February 04, 2013 9:49 AM
To: NT System Admin Issues
Subject: VMWare snapshot issue

Hi Folks,

VMWare question for you VMWare gurus:  I'm running ESX 5.0, vShpere client 5.0. 
 I  have one server that has many snapshots.  It is probably because BackupExec 
wasn't able to delete the snaphot properly after the vm backup.  This is only 
an issue on this server.  When I browse the datastore -- server name, I see at 
least 10 snapshots.  I've tried to consolidate the snapshots via the client, 
but each time I get an i/o error.

Suggestions or is this a call to support?

Thanks,
Tom

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


The information contained in this e-mail, and any attachments hereto, is from 
The American Society for the Prevention of Cruelty to Animals(r) (ASPCA(r)) and 
is intended only for use by the addressee(s) named herein and may contain 
legally privileged and/or confidential information. If you are not the intended 
recipient of this e-mail, you are hereby notified that any dissemination, 
distribution, copying or use of the contents of this e-mail, and any 
attachments hereto, is strictly prohibited. If you have received this e-mail in 
error, please immediately notify me by reply email and permanently delete the 
original and any copy of this e-mail and any printout thereof.


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http

RE: MS site?

2013-02-01 Thread Damien Solodow
Loads ok for me.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Christopher Bodnar [mailto:christopher_bod...@glic.com]
Sent: Friday, February 01, 2013 9:54 AM
To: NT System Admin Issues
Subject: MS site?

Anyone else having trouble getting to this link?

http://support.microsoft.comhttp://support.microsoft.com/
Christopher Bodnar
Enterprise Architect I, Corporate Office of Technology:Enterprise Architecture 
and Engineering Services

Tel 610-807-6459
3900 Burgess Place, Bethlehem, PA 18017
christopher_bod...@glic.commailto:

[cid:image001.jpg@01CE0062.39A4CDE0]

The Guardian Life Insurance Company of America

www.guardianlife.comhttp://www.guardianlife.com/



- This message, and any attachments to 
it, may contain information that is privileged, confidential, and exempt from 
disclosure under applicable law. If the reader of this message is not the 
intended recipient, you are notified that any use, dissemination, distribution, 
copying, or communication of this message is strictly prohibited. If you have 
received this message in error, please notify the sender immediately by return 
e-mail and delete the message and any attachments. Thank you.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmininline: image001.jpg

RE: Dumping DHCP to a File

2013-01-30 Thread Damien Solodow
Try netsh dhcp server dump

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Guyer, Don [mailto:dgu...@che.org]
Sent: Wednesday, January 30, 2013 12:55 PM
To: NT System Admin Issues
Subject: Dumping DHCP to a File

Everyone,

I'm looking for a way to dump the DHCP info to a text/CSV file. 
I know how to export it to a DAT file to move it to another server but, I need 
to create a spreadsheet with the data because we are moving DHCP management to 
non-Windows devices.

Regards,

Don Guyer
Catholic Health East - Information Technology
Enterprise Directory  Messaging Services
3805 West Chester Pike, Suite 100, Newtown Square, Pa  19073
email: dgu...@che.orgmailto:dgu...@che.org
Office:  610.550.3595 | Cell: 610.955.6528 | Fax: 610.271.9440
For immediate assistance, please open a Service Desk ticket or call the 
helpdesk @ 610-492-3839.
[Description: Description: Description: InfoService-Logo240]


Confidentiality Notice:
This e-mail, including any attachments is the
property of Catholic Health East and is intended
for the sole use of the intended recipient(s).
It may contain information that is privileged and
confidential.  Any unauthorized review, use,
disclosure, or distribution is prohibited. If you are
not the intended recipient, please delete this message, and
reply to the sender regarding the error in a separate email.


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmininline: image001.jpg

RE: on-premises storage application

2013-01-24 Thread Damien Solodow
We're currently experimenting with ZendTo for this purpose; so far seems pretty 
slick and works well.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Thursday, January 24, 2013 2:11 PM
To: NT System Admin Issues
Subject: on-premises storage application

I have a client that wants something like SkyDrive or DropBox - but they want 
to host it onsite - no cloud storage.

They also want the company that produces the application to be in north America 
or western Europe.

I have googled and binged a bit, and I have some options - but I'd prefer some 
recommendations.

Does anyone here have any that they would be willing to share?

Thanks!


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Help with this script

2013-01-23 Thread Damien Solodow
Yep.
The line $OUlist = @(Get-ADOrganizationalUnit -filter * -Credential $cred 
-SearchBase $domain.distinguishedName -SearchScope OneLevel -Server 
$domain.DNSroot)

Change OneLevel to SubTree

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Heaton, Joseph@Wildlife [mailto:joseph.hea...@wildlife.ca.gov]
Sent: Wednesday, January 23, 2013 4:14 PM
To: NT System Admin Issues
Subject: Help with this script

I found this script, to count user objects in all OUs.  The report doesn't list 
all OUs, so I was wondering if anyone could tell me if it has a limit as to how 
deep it will go to count.

Here's the script:

Import-Module activeDirectory

$fqdn = Read-Host Enter FQDN domain
$cred = Get-Credential

Write-Host Contacting $fqdn domain... -ForegroundColor Yellow

$domain = (get-addomain $fqdn -Credential $cred | select 
distinguishedName,pdcEmulator,DNSroot,DomainControllersContainer)

Write-Host Completed. Enumerating OUs.. -ForegroundColor Yellow

$OUlist = @(Get-ADOrganizationalUnit -filter * -Credential $cred -SearchBase 
$domain.distinguishedName -SearchScope OneLevel -Server $domain.DNSroot)
Write-Host Completed. Counting users... -ForegroundColor Yellow

for($i = 1; $i -le $oulist.Count; $i++)
{write-progress -Activity Collecting OUs -Status Finding OUs $i 
-PercentComplete ($i/$OUlist.count*100)}
$newlist = @{}



foreach ($_objectitem in $OUlist)
{
$getUser = Get-ADuser -Filter * -Credential $cred -SearchBase 
$_objectItem.DistinguishedName -SearchScope Subtree -Server $domain.pdcEmulator 
| measure | select Count
for($i = 1; $i -le $getUser.Count; $i++)
{write-progress -Activity Counting users -Status Finding users $i in 
$_objectitem -PercentComplete ($i/$getUser.count*100)}

$newlist.add($_objectItem.Name, $getUser.Count)
}

$newlist  .\OUuserCount.txt

Write-Host All done! -ForegroundColor yellow


So, the report that it creates only lists top level OUs under the domain.  I 
think it does, however, dig down under that to get the count, but just wanted 
to make sure.

Thanks,

Joe Heaton
Enterprise Server Support
CA Department of Fish and Wildlife
1807 13th Street, Suite 201
Sacramento, CA  95811
Desk:  (916) 557-3422


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Help with this script

2013-01-23 Thread Damien Solodow
Nope.
   -SearchScope ADSearchScope
   Specifies the scope of an Active Directory search. Possible values for 
this parameter are:
 Base or 0
 OneLevel or 1
 Subtree or 2

   A Base query searches only the current path or object. A OneLevel query 
searches the immediate children of tha
path or object. A Subtree query searches the current path or object and 
all children of that path or object.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Heaton, Joseph@Wildlife [mailto:joseph.hea...@wildlife.ca.gov]
Sent: Wednesday, January 23, 2013 4:58 PM
To: NT System Admin Issues
Subject: RE: Help with this script

Are OneLevel and SubTree the only options for the SearchScope parameter?

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Sent: Wednesday, January 23, 2013 1:18 PM
To: Heaton, Joseph@Wildlife; NT System Admin Issues
Subject: RE: Help with this script

Yep.
The line $OUlist = @(Get-ADOrganizationalUnit -filter * -Credential $cred 
-SearchBase $domain.distinguishedName -SearchScope OneLevel -Server 
$domain.DNSroot)

Change OneLevel to SubTree

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Heaton, Joseph@Wildlife [mailto:joseph.hea...@wildlife.ca.gov]
Sent: Wednesday, January 23, 2013 4:14 PM
To: NT System Admin Issues
Subject: Help with this script

I found this script, to count user objects in all OUs.  The report doesn't list 
all OUs, so I was wondering if anyone could tell me if it has a limit as to how 
deep it will go to count.

Here's the script:

Import-Module activeDirectory

$fqdn = Read-Host Enter FQDN domain
$cred = Get-Credential

Write-Host Contacting $fqdn domain... -ForegroundColor Yellow

$domain = (get-addomain $fqdn -Credential $cred | select 
distinguishedName,pdcEmulator,DNSroot,DomainControllersContainer)

Write-Host Completed. Enumerating OUs.. -ForegroundColor Yellow

$OUlist = @(Get-ADOrganizationalUnit -filter * -Credential $cred -SearchBase 
$domain.distinguishedName -SearchScope OneLevel -Server $domain.DNSroot)
Write-Host Completed. Counting users... -ForegroundColor Yellow

for($i = 1; $i -le $oulist.Count; $i++)
{write-progress -Activity Collecting OUs -Status Finding OUs $i 
-PercentComplete ($i/$OUlist.count*100)}
$newlist = @{}



foreach ($_objectitem in $OUlist)
{
$getUser = Get-ADuser -Filter * -Credential $cred -SearchBase 
$_objectItem.DistinguishedName -SearchScope Subtree -Server $domain.pdcEmulator 
| measure | select Count
for($i = 1; $i -le $getUser.Count; $i++)
{write-progress -Activity Counting users -Status Finding users $i in 
$_objectitem -PercentComplete ($i/$getUser.count*100)}

$newlist.add($_objectItem.Name, $getUser.Count)
}

$newlist  .\OUuserCount.txt

Write-Host All done! -ForegroundColor yellow


So, the report that it creates only lists top level OUs under the domain.  I 
think it does, however, dig down under that to get the count, but just wanted 
to make sure.

Thanks,

Joe Heaton
Enterprise Server Support
CA Department of Fish and Wildlife
1807 13th Street, Suite 201
Sacramento, CA  95811
Desk:  (916) 557-3422


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Help with this script

2013-01-23 Thread Damien Solodow
Huh; I usually just put the cmdlet name (and parameter if necessary) into 
Google and get good results.
Although get-help from within PowerShell works well. ;) The -detailed and 
-online switches are very helpful.
In PowerShell 3.0, the -OutWindow is very handy for get-help

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Steven Peck [sep...@gmail.com]
Sent: Wednesday, January 23, 2013 6:40 PM
To: NT System Admin Issues
Subject: Re: Help with this script

I tend to find better results for PowerShell cmdlets in BING.  Of course, that 
just may be the way I search.

On Wed, Jan 23, 2013 at 3:08 PM, Heaton, Joseph@Wildlife 
joseph.hea...@wildlife.ca.govmailto:joseph.hea...@wildlife.ca.gov wrote:
Thanks guys.  I did google parameter SearchScope but didn’t get any useful info.

From: Webster [mailto:webs...@carlwebster.commailto:webs...@carlwebster.com]
Sent: Wednesday, January 23, 2013 2:10 PM

To: Heaton, Joseph@Wildlife; NT System Admin Issues
Subject: RE: Help with this script

http://technet.microsoft.com/en-us/library/ee617236.aspx

[-SearchScope {Base | OneLevel | Subtree}]


Thanks


Webster

From: Heaton, Joseph@Wildlife [mailto:joseph.hea...@wildlife.ca.gov]
Sent: Wednesday, January 23, 2013 3:58 PM
To: NT System Admin Issues
Subject: RE: Help with this script

Are OneLevel and SubTree the only options for the SearchScope parameter?

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Sent: Wednesday, January 23, 2013 1:18 PM
To: Heaton, Joseph@Wildlife; NT System Admin Issues
Subject: RE: Help with this script

Yep.
The line $OUlist = @(Get-ADOrganizationalUnit -filter * -Credential $cred 
-SearchBase $domain.distinguishedName -SearchScope OneLevel -Server 
$domain.DNSroot)

Change OneLevel to SubTree

DAMIEN SOLODOW
Systems Engineer
317.447.6033tel:317.447.6033 (office)
317.447.6014tel:317.447.6014 (fax)
HARRISON COLLEGE

From: Heaton, Joseph@Wildlife [mailto:joseph.hea...@wildlife.ca.gov]
Sent: Wednesday, January 23, 2013 4:14 PM
To: NT System Admin Issues
Subject: Help with this script

I found this script, to count user objects in all OUs.  The report doesn’t list 
all OUs, so I was wondering if anyone could tell me if it has a limit as to how 
deep it will go to count.

Here’s the script:

Import-Module activeDirectory

$fqdn = Read-Host Enter FQDN domain
$cred = Get-Credential

Write-Host Contacting $fqdn domain... -ForegroundColor Yellow

$domain = (get-addomain $fqdn -Credential $cred | select 
distinguishedName,pdcEmulator,DNSroot,DomainControllersContainer)

Write-Host Completed. Enumerating OUs.. -ForegroundColor Yellow

$OUlist = @(Get-ADOrganizationalUnit -filter * -Credential $cred -SearchBase 
$domain.distinguishedName -SearchScope OneLevel -Server $domain.DNSroot)
Write-Host Completed. Counting users... -ForegroundColor Yellow

for($i = 1; $i -le $oulist.Count; $i++)
{write-progress -Activity Collecting OUs -Status Finding OUs $i 
-PercentComplete ($i/$OUlist.count*100)}
$newlist = @{}



foreach ($_objectitem in $OUlist)
{
$getUser = Get-ADuser -Filter * -Credential $cred -SearchBase 
$_objectItem.DistinguishedName -SearchScope Subtree -Server $domain.pdcEmulator 
| measure | select Count
for($i = 1; $i -le $getUser.Count; $i++)
{write-progress -Activity Counting users -Status Finding users $i in 
$_objectitem -PercentComplete ($i/$getUser.count*100)}

$newlist.add($_objectItem.Name, $getUser.Count)
}

$newlist  .\OUuserCount.txt

Write-Host All done! -ForegroundColor yellow


So, the report that it creates only lists top level OUs under the domain.  I 
think it does, however, dig down under that to get the count, but just wanted 
to make sure.

Thanks,


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage

RE: TechEd vs TechMentor

2013-01-08 Thread Damien Solodow
Windows Server, Exchange, SQL, PowerShell, VMware vCloud, Citrix XenApp.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Rod Trent [mailto:rodtr...@myitforum.com]
Sent: Tuesday, January 08, 2013 5:24 PM
To: NT System Admin Issues
Subject: RE: TechEd vs TechMentor

Which apps do you deal with the most?

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Sent: Tuesday, January 08, 2013 5:14 PM
To: NT System Admin Issues
Subject: TechEd vs TechMentor

It looks like I might be able to make one of these for the first time.
Any advice on which is the better/more useful event? Are they about the same 
price for registration normally (TechEd registration isn't open yet to check)?

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE
500 North Meridian St
Suite 500
Indianapolis, IN 46204-1213
www.harrison.eduhttp://www.harrison.edu/


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: TechEd vs TechMentor

2013-01-08 Thread Damien Solodow
Good to know. :)
What has TechEd pricing been like?

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Ziots, Edward [mailto:ezi...@lifespan.org]
Sent: Tuesday, January 08, 2013 5:57 PM
To: NT System Admin Issues
Subject: RE: TechEd vs TechMentor

I have to agree with Webster, I would side with Tech Ed, especially when you go 
to the whiteboard sessions in which you can draw out your solutions with MVP's 
and other folks that are SME's on their particular areas. I remember a few 
years ago going over a IIS 7.0 design and one of the M$ folks basically told me 
they just setup something like it just a few months ago. I was pretty impressed.

Z

Edward E. Ziots, CISSP, Security +, Network +
Security Engineer
Lifespan Organization
ezi...@lifespan.orgmailto:ezi...@lifespan.org

From: Webster [mailto:webs...@carlwebster.com]
Sent: Tuesday, January 08, 2013 5:49 PM
To: NT System Admin Issues
Subject: RE: TechEd vs TechMentor

You will get nothing on the last two at either conference.

IMO, TechMentor is for more Beginner to Intermediate level folk.  The one I 
went to in August was an anomaly.  It was at MS HQ and most sessions were 
extremely technical.

TechEd runs the range from Beginner to Advanced but the average is Intermediate.

Thanks


Webster

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Subject: RE: TechEd vs TechMentor

Windows Server, Exchange, SQL, PowerShell, VMware vCloud, Citrix XenApp.


From: Rod Trent [mailto:rodtr...@myitforum.com]
Subject: RE: TechEd vs TechMentor

Which apps do you deal with the most?

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Subject: TechEd vs TechMentor

It looks like I might be able to make one of these for the first time.
Any advice on which is the better/more useful event? Are they about the same 
price for registration normally (TechEd registration isn't open yet to check)?


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: DC server 2003 Time service

2013-01-03 Thread Damien Solodow
Which server holds the PDCe role?
Is the ntp server being set via GPO?

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Thursday, January 03, 2013 11:33 AM
To: NT System Admin Issues
Subject: DC server 2003 Time service

I am bringing 2008 R2 servers on line to take the FSMO jobs.
I have set one of them as a W32time server but my pc's are still getting time 
from the old
2003 DC SNTP server???
Any ideas on how to correct this?


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Adding sql reporting services feature

2012-12-17 Thread Damien Solodow
The slipstream method works fine and as I recall is supported by MS.
I would suggest though checking your build number on the SQL server to see if 
there is a cumulative update or the like that you'll need to add to your 
slipstream.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE


From: Joseph L. Casale [jcas...@activenetwerx.com]
Sent: Sunday, December 16, 2012 10:56 PM
To: NT System Admin Issues
Subject: Adding sql reporting services feature

I have an SQL2008R2 server that is fully patched and I need to add the reporting
services feature. As the base media only comes in GA, I had a quick look at what
it takes to make slipstreamed media and frankly it looks like a hack.

Anyone actually do this in production or is the only supported method to add the
feature then reapply sp2?

Thanks!
jlc
~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: Dead DC cleanup via GUI in 2008+

2012-12-11 Thread Damien Solodow
I've used it once and it seemed to do the trick.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: David Lum [mailto:david@nwea.org]
Sent: Tuesday, December 11, 2012 10:10 AM
To: NT System Admin Issues
Subject: Dead DC cleanup via GUI in 2008+

You can clean up dead DC metadata from a GUI in 2008 and later? Just use ADUC 
and Sites and Services per this article:
http://technet.microsoft.com/en-us/library/cc816907(WS.10).aspx

I have a dead DC that held no FSMO roles or anything else (DHCP, etc.), has 
anyone used this GUI method and still had to resort to command-line?

Seems too easy...lol
David Lum
Sr. Systems Engineer // NWEATM
Office 503.548.5229 // Cell (voice/text) 503.267.9764


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Outlook web access MAC

2012-12-04 Thread Damien Solodow
We'll he's boned. :)
That version of Outlook for Mac requires at least Exchange 2007.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

-Original Message-
From: Nigel Parker [mailto:nigel.par...@ultraframe.co.uk] 
Sent: Tuesday, December 04, 2012 11:02 AM
To: NT System Admin Issues
Subject: RE: Outlook web access MAC

Ahh
Ok we are running exchange 2003 

-Original Message-
From: Kennedy, Jim [mailto:kennedy...@elyriaschools.org]
Sent: 04 December 2012 15:07
To: NT System Admin Issues
Subject: RE: Outlook web access MAC

Ok, then Michael nailed it. You need EWS for that not OWA.

Is EWS enabled on that mailbox?  Do you have auto discover set up?



-Original Message-
From: Nigel Parker [mailto:nigel.par...@ultraframe.co.uk]
Sent: Tuesday, December 04, 2012 9:58 AM
To: NT System Admin Issues
Subject: RE: Outlook web access MAC

Hi
Thanks 

No he wants to use Microsoft outlook on his mac and connect to our exchange 
front end Our outlook we access server 

#Thanks 


-Original Message-
From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: 04 December 2012 13:56
To: NT System Admin Issues
Subject: RE: Outlook web access MAC

Safari and Chrome should work with Exchange 2010 and 2013.  But you didn't give 
me enough information to help you beyond that.

I don't think you mean OWA, I think you mean EWS. But I can't be sure.

-Original Message-
From: Nigel Parker [mailto:nigel.par...@ultraframe.co.uk]
Sent: Tuesday, December 4, 2012 7:40 AM
To: NT System Admin Issues
Subject: Outlook web access MAC

Hi
We have a director that wants to use his mac with office 2011 to connect 
remotely to our Exchange server via outlook web access

Everything is in place and we have been using owa for a couple of years to sync 
to smart phones However the mac is unable to connect giving an error 17997 

I have looked on various forums but not been able to resolve the issue Any help 
would be welcomed

Nigel Parker
Systems Engineer
Ultraframe (UK) Ltd
Tel:   01200 452329
Fax:   01200 452201
Web:   www.ultraframe.com
Email: mailto:nigel.par...@ultraframe.co.uk



Please consider the environment before printing this e-mail.

The statements and opinions expressed in this email are my own and may not 
represent those of Ultraframe (UK) Ltd.
This email is subject to copyright and the information contained in it is 
confidential and may be legally privileged. It is sent out only for intended 
recipient(s). Access to this email by anyone else is unauthorised. If you are 
not an intended recipient, any disclosure, copying, distribution or other use 
or any action taken or omitted to be taken in reliance on it, is prohibited and 
unlawful.


~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here:
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here:
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



Please consider the environment before printing this e-mail.

The statements and opinions expressed in this email are my own and may not 
represent those of Ultraframe (UK) Ltd.
This email is subject to copyright and the information contained in it is 
confidential and may be legally privileged. It is sent out only for intended 
recipient(s). Access to this email by anyone else is unauthorised. If you are 
not an intended recipient, any disclosure, copying, distribution or other use 
or any action taken or omitted to be taken in reliance on it, is prohibited and 
unlawful.


~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here:
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here:
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



Please consider the environment before printing this e-mail.

The statements and opinions expressed in this email are my own and may not 
represent those of Ultraframe (UK) Ltd.
This email is subject to copyright and the information contained in it is 
confidential and may be legally privileged. It is sent out only for intended 
recipient(s). Access to this email by anyone else

RE: Cisco ASA question

2012-11-13 Thread Damien Solodow
Check the Windows 2000 DCs listed; they are likely running IAS. On 2008+ that’s 
Network Policy Server.


DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Tom Miller [mailto:tmil...@sfgtrust.com]
Sent: Tuesday, November 13, 2012 10:59 AM
To: NT System Admin Issues
Subject: Cisco ASA question

Folks,

I have a new job and they use Cisco ASA firewalls here.  I'm new to Cisco 
firewalls so I'm still learning.

Under Remote Access VPN -- AAA/Local User --- AAA Server groups, I have a few 
Windows 2000 servers that are DCs listed here.  Those are going to be retired 
and I need to point this to 2008 R2 servers.

Can anyone tell me which roles/features on a Windows 2008 R2 server I need to 
install/configure to be used by the ASA?

Thanks,
Tom

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


RE: Transferring FSMO roles

2012-11-12 Thread Damien Solodow
Very shiny.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Webster [mailto:webs...@carlwebster.com]
Sent: Monday, November 12, 2012 1:08 PM
To: NT System Admin Issues
Subject: RE: Transferring FSMO roles

Or better yet, create a GPO to auto configure the DC that holds the PDCe FSMO 
role.  Then you don't have to worry about it.

http://blogs.technet.com/b/askds/archive/2008/11/13/configuring-an-authoritative-time-server-with-group-policy-using-wmi-filtering.aspx


Carl Webster
Consultant and Citrix Technology Professional
http://www.CarlWebster.comhttp://www.carlwebster.com/

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Subject: RE: Transferring FSMO roles

Sort of. :)
The PDC emulator role will be the authoritative time server for the domain, so 
you'll need to configure it accordingly for an upstream time-source.

Make sure the new DC is also a GC; you'll be in a lot of hurt if you don't have 
GCs. :)

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: David Lum [mailto:david@nwea.org]
Subject: Transferring FSMO roles

I rolled out a W2K8DC this weekend to a domain that previously didn't have a 
2K8 DC. One of my next tasks is to transfer FSMO roles off the 2003 DC's - as 
they are on ancient hardware - to the new DC. As near as I can tell, the PDC 
role (since it's the timekeeper) is the only one needing real thought in a 
single domain environment. Sound right?

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: New job: AD is a mess

2012-11-05 Thread Damien Solodow
MBS
Or you could do it in PowerShell...
/MBS

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: David Lum [mailto:david@nwea.org]
Sent: Monday, November 05, 2012 12:20 PM
To: NT System Admin Issues
Subject: RE: New job: AD is a mess

Learn ADFIND and OLDCOMP.exe for AD cleanup. Also LDIFDE and CSVDE if you need 
to make bulk changes (like changing UPN from @ABD to ABCDomain.com and the like)

From: Tom Miller [mailto:tmil...@sfgtrust.com]
Sent: Monday, November 05, 2012 8:21 AM
To: NT System Admin Issues
Subject: New job: AD is a mess

Hi Folks,

I started a new job a week ago and I'm auditing the various systems for which I 
am responsible.

Active Directory is a mess.  It is still at Windows 2000 functional level.  I 
need to address this before a planned migration to Exchange 2010.   There are a 
few Windows 2000 domain controllers that I need to decommission, and my memory 
is foggy on Windows 2000.

The  name for the AD domain is like ABCdomain.com.  The pre- Windows 2000 name 
is just ABC.  Oddly, a number of systems seem to want to use ABC and not 
ABCdomain - these are 2003 servers and PCs mostly.   Are there any tools anyone 
knows of that can tell me which systems refer to that.  Since I'm new and the 
previous person left no documentation, I'm hunting alot now.   All of the user 
IDs have the ABD domain name listed in the Account tab of their accounts, and 
the field is user logon name (Pre-Windows 2000).

Here's the plan to at least remove the 2000 domain controllers (there are 
2003/2008 DCs):
1.  create new GPOs to address printer and drive mappings.  Currently done via 
mix of batch and kixtart files.
2.  Update the account information for users accounts from ABC to ABCdomain 
(necessary?? ).
3.  Demote Windows 2000 domain controllers.
4.  Change domain/functional levels to 2003 (minimum required for Exchange 
2010).

I'm sure I'm missing something.  Comments/recommendations appreciated.

Tom


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: 7 shortcuts To Get Your Network Hacked (huh?)

2012-10-30 Thread Damien Solodow
Posting an unsanitized copy of your firewall config to ntsysadmin?

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: David Mazzaccaro [mailto:david.mazzacc...@hudsonmobility.com]
Sent: Tuesday, October 30, 2012 3:45 PM
To: NT System Admin Issues
Subject: RE: 7 shortcuts To Get Your Network Hacked (huh?)

Allowing users to run as local admins



From: Stu Sjouwerman [mailto:s...@sunbelt-software.com]
Sent: Tuesday, October 30, 2012 1:39 PM
To: NT System Admin Issues
Subject: 7 shortcuts To Get Your Network Hacked (huh?)

Hi Guys,

Yes, that was on purpose.  In your opinion, what are the most gruesome errors a 
system admin can make
which will result in getting their network hacked? Just jot down a few and 
reply to the list, I will tabulate
and come up with the 7 most mentioned sorted by importance.  This should be fun.

Have at it !!

Warm regards,

Stu



~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: 7 shortcuts To Get Your Network Hacked (huh?)

2012-10-30 Thread Damien Solodow
http://www.thinkgeek.com/product/f141/

I want to get this for our Devs..

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

-Original Message-
From: Webster [mailto:webs...@carlwebster.com] 
Sent: Tuesday, October 30, 2012 4:48 PM
To: NT System Admin Issues
Subject: RE: 7 shortcuts To Get Your Network Hacked (huh?)

Dos Equis
I don't always test, but when I do, I prefer to use the Production environment.
/Dos Equis


Carl Webster
Consultant and Citrix Technology Professional http://www.CarlWebster.com


 -Original Message-
 From: Michael B. Smith [mailto:mich...@smithcons.com]
 Subject: RE: 7 shortcuts To Get Your Network Hacked (huh?)
 
 You know, even with the smiley, some people may think you are serious!
 
 -Original Message-
 From: Webster [mailto:webs...@carlwebster.com]
 Subject: RE: 7 shortcuts To Get Your Network Hacked (huh?)
 
 But how can you properly test stuff in development unless you test it 
 in (on) production? :)
 
 
 Carl Webster
 Consultant and Citrix Technology Professional 
 http://www.CarlWebster.com
 
  -Original Message-
  From: Kurt Buff [mailto:kurt.b...@gmail.com]
  Subject: Re: 7 shortcuts To Get Your Network Hacked (huh?)
 
  That leads to #7 on my list - not maintaining separate production 
  and dev networks.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: DNS?

2012-10-29 Thread Damien Solodow
What is the name/IP of the DNS server you created the zone on?
Does the zone show SOA/NS records?
Is it an AD integrated zone?

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Monday, October 29, 2012 12:34 PM
To: NT System Admin Issues
Subject: RE: DNS?

Just mail.imcu.com no ip address.
Ping not host
I am getting very frustrated because it is staring me in the face


From: Walker, Michael [mailto:mwal...@mail.cvhp.org]
Posted At: Monday, October 29, 2012 12:30 PM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: DNS?
Subject: RE: DNS?

Question:  When you do an NSLOOKUP of mail.imcu.com, what does it resolve to?

Michael Walker
Senior Network Engineer
Citrus Valley Health Partners
140 W. College Street, Covina, CA  91723
Phone/Fax/Pager: (888) 299-6882
mwal...@mail.cvhp.orgmailto:mwal...@mail.cvhp.org

From: itli...@imcu.commailto:itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Monday, October 29, 2012 8:55 AM
To: NT System Admin Issues
Subject: RE: DNS?

Public ip works.  DNS, ping, https, activesync the whole thing.
I want to access it internally using a name instead of an IP address.
Currently with I can not https://mail.imcu.com/exchange with or without the 
'imcu.com' zone internally.
If I use a hosts file entry the above works.
If I use the ip (10.0.50.14) the https link works.
Not sure I need to go out my firewall just to come back in to get to my 
exchange box?


From: Richard McClary [mailto:richard.mccl...@aspca.org]
Posted At: Monday, October 29, 2012 11:41 AM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: DNS?
Subject: RE: DNS?

Let's see...  You have a private LAN, and you are hoping the public can reach 
the system at that same (private, internal) IP?

Why not register an external IP for that system, then do a mapped IP address 
(MIP) through your firewall?

From: itli...@imcu.commailto:itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Monday, October 29, 2012 9:59 AM
To: NT System Admin Issues
Subject: RE: DNS?

You are accessing it from external though.  External is working fine.
I am wanting an internal zone since my domain is imcu.local and my mail is 
imcu.com...
I hope to God you can use the internal ip address from the wild.
That would send me home in a bucket.


From: Steve Ens [mailto:stevey...@gmail.com]
Posted At: Monday, October 29, 2012 10:53 AM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: DNS?
Subject: Re: DNS?

For me it's the other way around...
On Mon, Oct 29, 2012 at 9:46 AM, itli...@imcu.commailto:itli...@imcu.com 
itli...@imcu.commailto:itli...@imcu.com wrote:
Ok https://10.0.50.4/exchange works but https://mail.imcu.com/exchange fails???


From: Kennedy, Jim 
[mailto:kennedy...@elyriaschools.orgmailto:kennedy...@elyriaschools.org]
Posted At: Monday, October 29, 2012 10:12 AM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: DNS?
Subject: RE: DNS?

That looks correct. Be sure to flush dns on the machine doing the lookup.

To be sure you should first do an nslookup on the domain's MX and make sure you 
get mail.imcu.comhttp://mail.imcu.com

nslookup
Set type=MX
Imcu.com

That should return mail.imcu.comhttp://mail.imcu.com

Then check the A record for mail.imcu.comhttp://mail.imcu.com and you should 
be good to go.

From: itli...@imcu.commailto:itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Monday, October 29, 2012 10:09 AM
To: NT System Admin Issues
Subject: RE: DNS?

I'll recycle the dnscache and post my internal DNS records here to make sure I 
am doing it correctly.
New Primary Zone
IMCU.COMhttp://IMCU.COM
imcu.comhttp://imcu.com A 12.145.145.177.176
imcu.comhttp://imcu.com MX mail.imcu.comhttp://mail.imcu.com
mail.imcu.comhttp://mail.imcu.com A 10.0.50.4(internal address))
www.imcu.comhttp://www.imcu.com A 12.145.177.176tel:12.145.177.176  
(external address for managed website))
board.imcu.comhttp://board.imcu.com A 10.0.10.21 (internal address))


Should that be all that I need?
I have vpn.imcu.comhttp://vpn.imcu.com, ftp.imcu.comftp://ftp.imcu.com but 
they are programmatically only accessible through the firewall so outside in 
only.

After the recycle of dnscache I should be able to do an nslookup for 
mail.imcu.comhttp://mail.imcu.com and get the ip 10.0.50.4 just like in my 
hosts file(Which I have commented out until after this experiment works or 
fails)
Thanks




From: Kennedy, Jim 
[mailto:kennedy...@elyriaschools.org]mailto:[mailto:kennedy...@elyriaschools.org]
Posted At: Monday, October 29, 2012 8:18 AM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: DNS?
Subject: RE: DNS?

Did you also add an MX record for that domain pointing at 
mail.imcu.comhttp://mail.imcu.com?

Most MTA's will fall back to the A record for the domain, so you could also put 
up an A record for imcu.comhttp://imcu.com. But I wouldn't count on that. 
Exchange didn't

RE: DNS?

2012-10-29 Thread Damien Solodow
It won't; nbtstat is for WINS, not DNS.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Monday, October 29, 2012 12:35 PM
To: NT System Admin Issues
Subject: RE: DNS?

Nbtstat -a 10.0.50.4 does not resolve the mail.imcu.com either??

From: Walker, Michael [mailto:mwal...@mail.cvhp.org]
Posted At: Monday, October 29, 2012 12:30 PM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: DNS?
Subject: RE: DNS?

Question:  When you do an NSLOOKUP of mail.imcu.com, what does it resolve to?

Michael Walker
Senior Network Engineer
Citrus Valley Health Partners
140 W. College Street, Covina, CA  91723
Phone/Fax/Pager: (888) 299-6882
mwal...@mail.cvhp.orgmailto:mwal...@mail.cvhp.org

From: itli...@imcu.commailto:itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Monday, October 29, 2012 8:55 AM
To: NT System Admin Issues
Subject: RE: DNS?

Public ip works.  DNS, ping, https, activesync the whole thing.
I want to access it internally using a name instead of an IP address.
Currently with I can not https://mail.imcu.com/exchange with or without the 
'imcu.com' zone internally.
If I use a hosts file entry the above works.
If I use the ip (10.0.50.14) the https link works.
Not sure I need to go out my firewall just to come back in to get to my 
exchange box?


From: Richard McClary [mailto:richard.mccl...@aspca.org]
Posted At: Monday, October 29, 2012 11:41 AM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: DNS?
Subject: RE: DNS?

Let's see...  You have a private LAN, and you are hoping the public can reach 
the system at that same (private, internal) IP?

Why not register an external IP for that system, then do a mapped IP address 
(MIP) through your firewall?

From: itli...@imcu.commailto:itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Monday, October 29, 2012 9:59 AM
To: NT System Admin Issues
Subject: RE: DNS?

You are accessing it from external though.  External is working fine.
I am wanting an internal zone since my domain is imcu.local and my mail is 
imcu.com...
I hope to God you can use the internal ip address from the wild.
That would send me home in a bucket.


From: Steve Ens [mailto:stevey...@gmail.com]
Posted At: Monday, October 29, 2012 10:53 AM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: DNS?
Subject: Re: DNS?

For me it's the other way around...
On Mon, Oct 29, 2012 at 9:46 AM, itli...@imcu.commailto:itli...@imcu.com 
itli...@imcu.commailto:itli...@imcu.com wrote:
Ok https://10.0.50.4/exchange works but https://mail.imcu.com/exchange fails???


From: Kennedy, Jim 
[mailto:kennedy...@elyriaschools.orgmailto:kennedy...@elyriaschools.org]
Posted At: Monday, October 29, 2012 10:12 AM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: DNS?
Subject: RE: DNS?

That looks correct. Be sure to flush dns on the machine doing the lookup.

To be sure you should first do an nslookup on the domain's MX and make sure you 
get mail.imcu.comhttp://mail.imcu.com

nslookup
Set type=MX
Imcu.com

That should return mail.imcu.comhttp://mail.imcu.com

Then check the A record for mail.imcu.comhttp://mail.imcu.com and you should 
be good to go.

From: itli...@imcu.commailto:itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Monday, October 29, 2012 10:09 AM
To: NT System Admin Issues
Subject: RE: DNS?

I'll recycle the dnscache and post my internal DNS records here to make sure I 
am doing it correctly.
New Primary Zone
IMCU.COMhttp://IMCU.COM
imcu.comhttp://imcu.com A 12.145.145.177.176
imcu.comhttp://imcu.com MX mail.imcu.comhttp://mail.imcu.com
mail.imcu.comhttp://mail.imcu.com A 10.0.50.4(internal address))
www.imcu.comhttp://www.imcu.com A 12.145.177.176tel:12.145.177.176  
(external address for managed website))
board.imcu.comhttp://board.imcu.com A 10.0.10.21 (internal address))


Should that be all that I need?
I have vpn.imcu.comhttp://vpn.imcu.com, ftp.imcu.comftp://ftp.imcu.com but 
they are programmatically only accessible through the firewall so outside in 
only.

After the recycle of dnscache I should be able to do an nslookup for 
mail.imcu.comhttp://mail.imcu.com and get the ip 10.0.50.4 just like in my 
hosts file(Which I have commented out until after this experiment works or 
fails)
Thanks




From: Kennedy, Jim 
[mailto:kennedy...@elyriaschools.org]mailto:[mailto:kennedy...@elyriaschools.org]
Posted At: Monday, October 29, 2012 8:18 AM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: DNS?
Subject: RE: DNS?

Did you also add an MX record for that domain pointing at 
mail.imcu.comhttp://mail.imcu.com?

Most MTA's will fall back to the A record for the domain, so you could also put 
up an A record for imcu.comhttp://imcu.com. But I wouldn't count on that. 
Exchange didn't until 2007 or so.

From: itli...@imcu.commailto:itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Sunday, October 28, 2012 1:50 PM
To: NT System

RE: server 2012 / server 2008 r2 KMS

2012-10-04 Thread Damien Solodow
Not that I can think of; I'd go to KMS as soon as you're large enough.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: David Lum [mailto:david@nwea.org]
Sent: Thursday, October 04, 2012 9:54 AM
To: NT System Admin Issues
Subject: RE: server 2012 / server 2008 r2 KMS

This begs the question - MAC vs. KMS, when should a company go to KMS instead 
of individual MAC keys? We have plenty of systems in our environment, my guess 
it's really a matter of preference.

Is there any reason NOT to implement KMS activation in an environment large 
enough for it?

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Wednesday, October 03, 2012 12:20 PM
To: NT System Admin Issues
Subject: RE: server 2012 / server 2008 r2 KMS

I have that hotfix and our 2012 KMS key installed on our Windows 2008 R2 SP1 
KMS host. I don't currently have any 2012 hosts up, but it's still validating 
my Server 2008 R2 hosts.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Jeff Bunting 
[mailto:bunting.j...@gmail.com]mailto:[mailto:bunting.j...@gmail.com]
Sent: Wednesday, October 03, 2012 2:56 PM
To: NT System Admin Issues
Subject: Re: server 2012 / server 2008 r2 KMS

I don't have any experience with it, but that's how I read the KB article.

FWIW, this post seems to agree
http://www.winsysadminblog.com/2012/08/upgrading-your-current-kms-server-server-2008-r2-to-support-windows-8-and-server-2012-activation/

Jeff
On Wed, Oct 3, 2012 at 12:46 PM, Michael B. Smith 
mich...@smithcons.commailto:mich...@smithcons.com wrote:
I was under the impression that if I applied KB 2691586 and then used my Server 
2012 KMS key, my KMS server would also validate Server 2008 R2 servers. But it 
isn't working.

Am I mistaken? Does anyone have any knowledge/experience with this?

Regards,
Michael B.


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: XenApp, Published Desktop, Remote desktop

2012-10-01 Thread Damien Solodow
Sounds like these are processes they should turn into services or perhaps 
scheduled tasks. :)

But in the interim, I'd think you'd be able to just sign in via Remote Desktop 
to start the sessions and launch the apps.

Might check out something like MRemoteNG or RemoteDesktopManager which would 
let you create a different connection for each special account.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Tom Miller [mailto:tmil...@hnncsb.org]
Sent: Monday, October 01, 2012 5:15 PM
To: NT System Admin Issues
Subject: Re: XenApp, Published Desktop, Remote desktop

Sorry, it is a complicated system. There are special accounts that have to be 
logged into run specific application components. Once you start the component, 
it runs periodically and I do not need to do anything else. But...there are a 
number of special accounts that are used to run the processes. The vendor 
recommends logging into the server via remote desktop, starting the app, 
disconnecting, login with the next account, start the app, then the same with 
the other accounts (there are 10 or so).

I prefer to avoid having to log into the XA web interface. Can I do this with 
regular remote desktop or do I need to do something else?
Tom Miller
Engineer, Hampton-Newport News Community Services Board

 Webster webs...@carlwebster.commailto:webs...@carlwebster.com 10/1/2012 
 4:46:10 PM 
I am confused also.

Carl Webster
Consultant and Citrix Technology Professional
http://www.CarlWebster.comhttp://www.carlwebster.com/

From: James Rankin 
[mailto:kz2...@googlemail.com]mailto:[mailto:kz2...@googlemail.com]
Subject: Re: XenApp, Published Desktop, Remote desktop

I'm struggling to understand what you're trying to do. You want to run a 
particular published app under different user ids? For regular users, or an 
administrator? Does the app require any interaction once you launch it?
On 1 October 2012 21:27, Tom Miller 
tmil...@hnncsb.orgmailto:tmil...@hnncsb.org wrote:
Hi Folks,

We run a clinical application via XenApp 6.5.   There is a particular component 
that runs events that are pending that regular user accounts do not run 
(appointment, billing schedules, etc.)  I need to remote desktop to the server, 
load the app under a particular account, disconnect, remote desktop again, 
login as a different user, then load the app again (same app but different 
processes), and this for several more times.  This is all on one server 
designed for this function.  The client portion is a XA 6.5 server.

Suggestions for this on XA 6.5?  I know I can have those special accounts use 
the regular XA web interface, then load the app, but simple remote desktop 
would be easier.  I'm having a brain cramp and can't remember how to set this 
up within XA, or even Remote Desktop Services.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


Confidentiality Notice: This e-mail message, including attachments, is for the 
sole use of the intended recipient(s) and may contain confidential and 
privileged information. Any unauthorized review, use, disclosure, or 
distribution is prohibited. If you are not the intended recipient, please 
contact the sender by reply e-mail and destroy all copies of the original 
message.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: AD Property pages

2012-08-22 Thread Damien Solodow
A closer look reveals that the GUIDs weren’t actually identical; turns out when 
you look at a block of numbers it’s easy to misread them.
Oops.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Christopher Bodnar [mailto:christopher_bod...@glic.com]
Sent: Wednesday, August 22, 2012 4:31 PM
To: NT System Admin Issues
Subject: Re: AD Property pages

This seems to confirm that all those values should be different:

http://blog.joeware.net/2006/01/18/217/

adminPropertyPages: 10,{0F65B1BF-740F-11d1-BBE6-0060081692B3}
adminPropertyPages: 7,{B52C1E50-1DD2-11D1-BC43-00C04FC31FD3}
adminPropertyPages: 6,{4E40F770-369C-11d0-8922-00A024AB2DBB}
adminPropertyPages: 5,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}
adminPropertyPages: 4,{6dfe648b-a212-11d0-bcd5-00c04fd8d5b6}
adminPropertyPages: 3,{77597368-7b15-11d0-a0c2-080036af3f03}
adminPropertyPages: 1,{6dfe6492-a212-11d0-bcd5-00c04fd8d5b6}

Christopher Bodnar
Enterprise Architect I, Corporate Office of Technology:Enterprise Architecture 
and Engineering Services

Tel 610-807-6459
3900 Burgess Place, Bethlehem, PA 18017
christopher_bod...@glic.commailto:

[cid:image001.jpg@01CD808C.96DBDAE0]

The Guardian Life Insurance Company of America

www.guardianlife.comhttp://www.guardianlife.com/







From:Christopher Bodnar 
christopher_bod...@glic.commailto:christopher_bod...@glic.com
To:NT System Admin Issues 
ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com
Date:08/22/2012 04:26 PM
Subject:Re: AD Property pages




I just took a look at mine and they are all different. #1 is the same as yours, 
but #4 and #5 are:

4,{6dfe648b-a212-11d0-bcd5-00c04fd8d5b6}
5,{6dfe6488-a212-11d0-bcd5-00c04fd8d5b6}

Any chance you misread those 2?

It's my understanding that this is a GUID associated with a registered COM 
object. If all of yours are the same, i would think  you would have 3 tabs that 
should be identical. In this case it would be the General tab.

Christopher Bodnar
Enterprise Architect I, Corporate Office of Technology:Enterprise Architecture 
and Engineering Services

Tel 610-807-6459
3900 Burgess Place, Bethlehem, PA 18017
christopher_bod...@glic.commailto:

[cid:image001.jpg@01CD808C.96DBDAE0]

The Guardian Life Insurance Company of America

www.guardianlife.comhttp://www.guardianlife.com/








From:Damien Solodow 
damien.solo...@harrison.edumailto:damien.solo...@harrison.edu
To:NT System Admin Issues 
ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com
Date:08/22/2012 03:33 PM
Subject:AD Property pages




I noticed a couple of oddities when looking something up in adsiedit earlier 
and I wanted to run it up the flag pole and see if it’s really an anomaly to 
modify or just something I missed.

I was looking at the adminPropertyPages property of the 
“CN=computer-Display,CN=409,CN=DisplaySpecifiers,CN=Configuration,DC=domain,DC=name”
 object.
Among the entries there I saw what look like some duplicates:
1,{6dfe6492-a212-11d0-bcd5-00c04fd8d5b6}
4,{6dfe6492-a212-11d0-bcd5-00c04fd8d5b6}
5,{6dfe6492-a212-11d0-bcd5-00c04fd8d5b6}

My understanding of this property is that the first number is an ordinal, and 
the second a GUID. So 1 is the position on the properties dialog, and the GUID 
string is the property page to show. This would suggest that the same page 
would be displayed in three places, but that doesn’t appear to be the case.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE
500 North Meridian St
Suite 500
Indianapolis, IN 46204-1213
www.harrison.eduhttp://www.harrison.edu/


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

- This message, and any attachments to 
it, may contain information that is privileged, confidential, and exempt from 
disclosure under applicable law. If the reader of this message is not the 
intended recipient, you are notified that any use, dissemination, distribution, 
copying, or communication of this message is strictly prohibited. If you have 
received this message in error, please notify the sender immediately by return 
e-mail and delete the message and any attachments. Thank you.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body

RE: Software like citrix or webex??

2012-08-14 Thread Damien Solodow
Don't try to use firewall rules to block them; use an actual web filter product?
I know that Barracuda for example has a category for these sorts of tools that 
you can build rules around..

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Tuesday, August 14, 2012 12:31 PM
To: NT System Admin Issues
Cc: Brad Herbert
Subject: RE: Software like citrix or webex??

Aren't you guys a bundle of f'ing joy.  These are specific to the institution 
that bought them and installed them.  So to pick these up I have to 1. rely on 
my users to tell me when they are being 'helped' over the internet 2. keep 
track of everyone of these 'helping' sites there is in the universe and update 
it on a regular basis
All I wanted was an alert to tell me when the users are being 'helped' over the 
internet so I can remind them of cooperate policy to have someone from IT on 
the line when 'help' is being given on all workstations, servers, etc.
Any ideas on how to monitor this kind of traffic without the manual add of a 
million ip's???
Thanks again.
David

From: Jonathan Link 
[mailto:jonathan.l...@gmail.com]mailto:[mailto:jonathan.l...@gmail.com]
Posted At: Tuesday, August 14, 2012 12:01 PM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: Software like citrix or webex??
Subject: Re: Software like citrix or webex??

Live meeting?
On Tue, Aug 14, 2012 at 11:38 AM, Graeme Carstairs 
loonyto...@gmail.commailto:loonyto...@gmail.com wrote:
A few I know off or use

Bomgar
Logmein.com
Team viewer

Graeme


On Tuesday, 14 August 2012, itli...@imcu.commailto:itli...@imcu.com wrote:
I am building filters on my Firewall to fire alerts with users have outbound 
traffic going to ip's owned by citrix and webex.
This is working 99% effectively with a lot of false positives for website 
browsing that isn't exactly the traffic I want.  No biggie.
Now I want to know of any other major company that does go to my pc, goto 
assist type stuff.
If you know of any please let me know, thanks.
David

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


--
Good news everyone, you have just received an e-mail from me!


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: DCs in saperate OU

2012-08-13 Thread Damien Solodow
This -- OT should we leave domain controllers alone in their natural GPO and 
control the acccess using Sites and services?

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE


-Original Message-
From: Juned Shaikh [mailto:jsha...@gmail.com] 
Sent: Monday, August 13, 2012 10:17 AM
To: NT System Admin Issues
Subject: DCs in saperate OU

Greetings:

Trying to find out: If there are 10 regional offices with 25 odd staff, is 
there a need to 1) create Regional Domain Contoller OUs and 2) move the 
Regional Domain Controllers to that OU and 3) apply the Domain Controller GPO. 

OT should we leave domain controllers alone in their natural GPO and control 
the acccess using Sites and services?

Thanks,
~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Where did my HD space go?

2012-07-30 Thread Damien Solodow
When you ran WinDirStat, did you do Run as Administrator? If not, try that as 
otherwise there are a lot of directories you won't have permissions to and so 
it won't show you info about them.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

-Original Message-
From: John Cook [mailto:john.c...@pfsf.org] 
Sent: Monday, July 30, 2012 1:53 PM
To: NT System Admin Issues
Subject: RE: Where did my HD space go?

Pagefile?

 John W. Cook
Network Operations Manager
Partnership For Strong Families
5950 NW 1st Place
Gainesville, Fl 32607
Office (352) 244-1610
Cell (352) 215-6944
MCSE, MCP+I, MCTS, CompTIA A+, N+, VSP4, VTSP4


-Original Message-
From: Bill Humphries [mailto:nt...@hedgedigger.com]
Sent: Monday, July 30, 2012 1:48 PM
To: NT System Admin Issues
Subject: Where did my HD space go?

Ok, I have a strange one.  This is a 64 bit 2008 server with SP2.  It is 
complaining about the C drive being full.  The C drive is 98.5 GB in disk 
management and explorer.  Both claim there is only 400 MB of free space.  When 
I use windirstat to look at the drive and see where the space hog is, it shows 
only 23 GB of files on the drive.

Shadow copies shows as disabled and there are no previous versions listed under 
the previous versions tab.  I have emptied the recycle bin.
Any ideas?

Bill


~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

CONFIDENTIALITY STATEMENT: The information transmitted, or contained or 
attached to or with this Notice is intended only for the person or entity to 
which it is addressed and may contain Protected Health Information (PHI), 
confidential and/or privileged material. Any review, transmission, 
dissemination, or other use of, and taking any action in reliance upon this 
information by persons or entities other than the intended recipient without 
the express written consent of the sender are prohibited. This information may 
be protected by the Health Insurance Portability and Accountability Act of 1996 
(HIPAA), and other Federal and Florida laws. Improper or unauthorized use or 
disclosure of this information could result in civil and/or criminal penalties.
 Consider the environment. Please don't print this e-mail unless you really 
need to.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: Exchange 2003 and firewall or DMZ.

2012-07-20 Thread Damien Solodow
Are you just going to be serving OWA (and possibly ActiveSync) to the Internet 
or will you also need POP/IMAP?

The Ironport taking smtp from the Internet and passing it to your Exchange 
server is the best bet for that part.

For OWA, what I would do is spin up a new Exchange 2003 server, make it part of 
the existing organization. What you'll do is make it a front-end server which 
means that it will not host an information store, just serve up 
OWA/ActiveSync/POP/IMAP. Then what you'll do is make this accessible via HTTPS 
to the Internet through your firewall (or ideally an ISA/TMG).

Make sense?

From: itli...@imcu.com [itli...@imcu.com]
Sent: Friday, July 20, 2012 12:34 PM
To: NT System Admin Issues
Subject: Exchange 2003 and firewall or DMZ.

We have discussed this before but I have lost my notes.
I have 1 Exchange Standard 2003 server that sits behind my firewall.  The 
auditors want it in the DMZ but as discussed here that is dumb.  I believe 
someone told me about putting ISA or TMG behind my firewall and redirecting the 
IIS traffic like a web proxy to the exchange server from the firewall and that 
my email filter ironport device is good enough for the smtp traffic?

So my question is what is the best scenario with the OWA on the exchange box 
and how do I implement this?

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: ipPhone attribute displayed in Outlook 2010

2012-07-17 Thread Damien Solodow
I'll poke around as well; I'd definitely be interested in seeing what that is.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Monday, July 16, 2012 9:04 PM
To: NT System Admin Issues
Subject: RE: ipPhone attribute displayed in Outlook 2010

There is now a supported mechanism for doing this. I'd have to look it up, but 
it was introduced with Server 2008.

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Monday, July 16, 2012 5:34 PM
To: NT System Admin Issues
Subject: RE: ipPhone attribute displayed in Outlook 2010

The trick is generating that mapI id. :)

Sent from my Android phone using TouchDown 
(www.nitrodesk.comhttp://www.nitrodesk.com)

-Original Message-
From: Brian Desmond [br...@briandesmond.com]
Received: Monday, 16 Jul 2012, 4:52pm
To: NT System Admin Issues [ntsysadmin@lyris.sunbelt-software.com]
Subject: RE: ipPhone attribute displayed in Outlook 2010
You can retroactively assign a mapiID to an attribute in AD that doesn't have 
such a thing assigned. From there it's using the Details Template Editor, not 
the OCT to do this.

Thanks,
Brian Desmond
br...@briandesmond.commailto:br...@briandesmond.com

w - 312.625.1438 | c   - 312.731.3132

From: Michael B. Smith 
[mailto:mich...@smithcons.com]mailto:[mailto:mich...@smithcons.com]
Sent: Thursday, July 12, 2012 7:35 AM
To: NT System Admin Issues
Subject: RE: ipPhone attribute displayed in Outlook 2010

Some quick stuff.

The list of attributes that you can use for modification is obtained by:

dsquery * CN=Schema,CN=Configuration,DC=example,DC=com -limit 0 -filter 
mAPIId=* -attr cn lDAPDisplayName mAPIID

You can only modify MAPI tools (e.g., Outlook) using attributes that have a 
mAPIID.

What you see is that ipPhone (whose official name is Phone-Ip-Primary), isn't 
in the list! You couldn't have modified it anyway.

What you COULD do is (via a batch process) copy the value to another field that 
does have a mAPIID and then display that value.

You have a surprising (IMO) amount of control over the contents of a number of 
displays when using the Office Customization Tool. That does not require your 
provider's involvement. It does require that you be using a non-retail version 
of Outlook.

And finally, many of those displays are controllable via the registry. For an 
example, see KB 981022.

Regards,
Michael B.


From: David Lum [mailto:david@nwea.org]
Sent: Wednesday, July 11, 2012 9:18 AM
To: NT System Admin Issues
Subject: RE: ipPhone attribute displayed in Outlook 2010

Ok I feel dumb - I tried many variations but not my exact subject line - I only 
feel a little dumb :)

Excellent article and just what we want...too bad our Exchange is outsourced so 
we have no access/control of Exchange :(

From: Free, Bob [mailto:r...@pge.com]mailto:[mailto:r...@pge.com]
Sent: Tuesday, July 10, 2012 3:12 PM
To: NT System Admin Issues
Subject: RE: ipPhone attribute displayed in Outlook 2010

I copy/pasted your subject and the first article was Customizing the Outlook 
Address Book.

Seemed like it was right what you needed :-]

From: David Lum [mailto:david@nwea.org]mailto:[mailto:david@nwea.org]
Sent: Tuesday, July 10, 2012 3:02 PM
To: NT System Admin Issues
Subject: RE: ipPhone attribute displayed in Outlook 2010

All the crap I saw was about the Apple iPhone..

From: Free, Bob [mailto:r...@pge.com]mailto:[mailto:r...@pge.com]
Sent: Tuesday, July 10, 2012 2:57 PM
To: NT System Admin Issues
Subject: RE: ipPhone attribute displayed in Outlook 2010

It's as easy as 1-2-3


1.   Copy your subject verbatim and paste it into your web browser's 
address bar.

2.   Submit it to the googleplex

3.   Read the first article the googleplex shows you and follow the 
directions therein

:)

From: David Lum [mailto:david@nwea.org]mailto:[mailto:david@nwea.org]
Sent: Tuesday, July 10, 2012 2:41 PM
To: NT System Admin Issues
Subject: ipPhone attribute displayed in Outlook 2010

Is it possible to map the ipPhone field to something that displays in Outlook 
2010 when using Exchange?
David Lum
Systems Engineer // NWEATM
Office 503.548.5229 // Cell (voice/text) 503.267.9764



~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body

RE: ipPhone attribute displayed in Outlook 2010

2012-07-16 Thread Damien Solodow
The trick is generating that mapI id. :)

Sent from my Android phone using TouchDown (www.nitrodesk.com)

-Original Message-
From: Brian Desmond [br...@briandesmond.com]
Received: Monday, 16 Jul 2012, 4:52pm
To: NT System Admin Issues [ntsysadmin@lyris.sunbelt-software.com]
Subject: RE: ipPhone attribute displayed in Outlook 2010

You can retroactively assign a mapiID to an attribute in AD that doesn’t have 
such a thing assigned. From there it’s using the Details Template Editor, not 
the OCT to do this.

Thanks,
Brian Desmond
br...@briandesmond.com

w – 312.625.1438 | c   – 312.731.3132

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Thursday, July 12, 2012 7:35 AM
To: NT System Admin Issues
Subject: RE: ipPhone attribute displayed in Outlook 2010

Some quick stuff.

The list of attributes that you can use for modification is obtained by:

dsquery * CN=Schema,CN=Configuration,DC=example,DC=com -limit 0 -filter 
mAPIId=* -attr cn lDAPDisplayName mAPIID

You can only modify MAPI tools (e.g., Outlook) using attributes that have a 
mAPIID.

What you see is that ipPhone (whose official name is Phone-Ip-Primary), isn’t 
in the list! You couldn’t have modified it anyway.

What you COULD do is (via a batch process) copy the value to another field that 
does have a mAPIID and then display that value.

You have a surprising (IMO) amount of control over the contents of a number of 
displays when using the Office Customization Tool. That does not require your 
provider’s involvement. It does require that you be using a non-retail version 
of Outlook.

And finally, many of those displays are controllable via the registry. For an 
example, see KB 981022.

Regards,
Michael B.


From: David Lum [mailto:david@nwea.org]
Sent: Wednesday, July 11, 2012 9:18 AM
To: NT System Admin Issues
Subject: RE: ipPhone attribute displayed in Outlook 2010

Ok I feel dumb – I tried many variations but not my exact subject line – I only 
feel a little dumb :)

Excellent article and just what we want...too bad our Exchange is outsourced so 
we have no access/control of Exchange :(

From: Free, Bob [mailto:r...@pge.com]mailto:[mailto:r...@pge.com]
Sent: Tuesday, July 10, 2012 3:12 PM
To: NT System Admin Issues
Subject: RE: ipPhone attribute displayed in Outlook 2010

I copy/pasted your subject and the first article was “Customizing the Outlook 
Address Book”.

Seemed like it was right what you needed :-]

From: David Lum [mailto:david@nwea.org]mailto:[mailto:david@nwea.org]
Sent: Tuesday, July 10, 2012 3:02 PM
To: NT System Admin Issues
Subject: RE: ipPhone attribute displayed in Outlook 2010

All the crap I saw was about the Apple iPhone..

From: Free, Bob [mailto:r...@pge.com]mailto:[mailto:r...@pge.com]
Sent: Tuesday, July 10, 2012 2:57 PM
To: NT System Admin Issues
Subject: RE: ipPhone attribute displayed in Outlook 2010

It’s as easy as 1-2-3


1.   Copy your subject verbatim and paste it into your web browser’s 
address bar.

2.   Submit it to the googleplex

3.   Read the first article the googleplex shows you and follow the 
directions therein

:)

From: David Lum [mailto:david@nwea.org]mailto:[mailto:david@nwea.org]
Sent: Tuesday, July 10, 2012 2:41 PM
To: NT System Admin Issues
Subject: ipPhone attribute displayed in Outlook 2010

Is it possible to map the ipPhone field to something that displays in Outlook 
2010 when using Exchange?
David Lum
Systems Engineer // NWEATM
Office 503.548.5229 // Cell (voice/text) 503.267.9764



~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful 

RE: Holy Marissa Mayer, Batman

2012-07-16 Thread Damien Solodow
What's made it extra funny is there is an author by that name who has been 
getting a number of mis-directed congratulations aimed at her.

From: Richard Stovall [rich...@gmail.com]
Sent: Monday, July 16, 2012 8:31 PM
To: NT System Admin Issues
Subject: Holy Marissa Mayer, Batman

And good luck to her...

http://pressroom.yahoo.net/pr/ycorp/236553.aspx



~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

Re: microsoft.com has been dns hijacked

2012-06-19 Thread Damien Solodow
Will be interesting to see the post mortem of the attack.
--
Sent using BlackBerry


From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Tuesday, June 19, 2012 05:28 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: microsoft.com has been dns hijacked

Oops!

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://theessentialexchange.com/


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


RE: Active Directory Appliance?

2012-06-13 Thread Damien Solodow
Your best bet then is to use a Server Core install of either 2008 or 2008 R2. 
It's supported, requires minimal patching/management and is ideally suited to 
remote management.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Jonathan [mailto:ncm...@gmail.com]
Sent: Wednesday, June 13, 2012 5:01 PM
To: NT System Admin Issues
Subject: RE: Active Directory Appliance?


Not interested in anything home-brewed.
On Jun 13, 2012 4:41 PM, Daniel Chenault 
dchena...@lgnetworksinc.commailto:dchena...@lgnetworksinc.com wrote:
Used P4 with 2G RAM, 500M hard drive: ~100
Your favorite flavor of Linux distro: free
DNS and DHCP: free with OS

Image it, lock it down tight and let 'er rip.

Daniel Chenault
dchena...@lgnetworksinc.commailto:dchena...@lgnetworksinc.com
[Description: Description: cid:image001.jpg@01CCF24C.F9B05160]

From: Jonathan [mailto:ncm...@gmail.commailto:ncm...@gmail.com]
Sent: Wednesday, June 13, 2012 3:20 PM
To: NT System Admin Issues
Subject: Active Directory Appliance?


My Google-fu seems to be failing me. I know that infoblox has DNS and DHCP 
hardware appliances, but I don't see anything for Active Directory 2003/2008. 
I'm only interested in this for remote offices, not for my core. The idea would 
be to eliminate buying a server, maintaining that server, the OS, etc, for our 
remote offices.

Does such exist, and if so, does the collective brain trust have any experience 
with them?

TIA,

Jonathan

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmininline: image001.jpg

Semi OT: VMware PSO credits

2012-06-13 Thread Damien Solodow
I've got a few of the PSO credits, and the information I'd seen says you can 
use them to pay for your VCP exam. 
Problem is, not seeing how to redeem the credits for the exam. Anyone been down 
that road and can share?

I did submit a case to VMware customer service but the auto-response basically 
said we're buried and it will be a long time before you hear back. 
--
Sent using BlackBerry

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: in-depth AD

2012-06-12 Thread Damien Solodow
Couple questions:

1)  I assume there are multiple domain controllers? Do they all report this 
same error or is it just one DC?

2)  What object is an error being reported on? Depending on the object type 
you may have different options for dealing with it

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Daniel Chenault [mailto:dchena...@lgnetworksinc.com]
Sent: Tuesday, June 12, 2012 2:19 PM
To: NT System Admin Issues
Subject: RE: in-depth AD

Failed with an error (1206 I believe) stating the database is corrupt.

Let me clarify: I, and Microsoft, have run every possible switch or command 
available via ntdsutil and esentutl. Each one failed with an error stating 
corruption. Wanting to try and edit the file manually is not a whim or a wild 
idea but a last-ditch effort unless someone has a better idea.

Daniel Chenault
dchena...@lgnetworksinc.commailto:dchena...@lgnetworksinc.com
[Description: Description: cid:image001.jpg@01CCF24C.F9B05160]

From: Michael B. Smith 
[mailto:mich...@smithcons.com]mailto:[mailto:mich...@smithcons.com]
Sent: Tuesday, June 12, 2012 11:56 AM
To: NT System Admin Issues
Subject: RE: in-depth AD

Have you done a defrag of the ntds.dit?

From: Daniel Chenault 
[mailto:dchena...@lgnetworksinc.com]mailto:[mailto:dchena...@lgnetworksinc.com]
Sent: Tuesday, June 12, 2012 12:23 PM
To: NT System Admin Issues
Subject: RE: in-depth AD

Oh yes, it's up and running. Basic AD functionality is there; I can create 
users, assign permissions and other simple stuff. No replication is happening 
and it's to the point that I cannot open the EMC.

Daniel Chenault
dchena...@lgnetworksinc.commailto:dchena...@lgnetworksinc.com
[Description: Description: cid:image001.jpg@01CCF24C.F9B05160]

From: Brian Desmond 
[mailto:br...@briandesmond.com]mailto:[mailto:br...@briandesmond.com]
Sent: Tuesday, June 12, 2012 11:13 AM
To: NT System Admin Issues
Subject: RE: in-depth AD

Does the machine boot?

Thanks,
Brian Desmond
br...@briandesmond.commailto:br...@briandesmond.com

w - 312.625.1438 | c   - 312.731.3132

From: Daniel Chenault 
[mailto:dchena...@lgnetworksinc.com]mailto:[mailto:dchena...@lgnetworksinc.com]
Sent: Tuesday, June 12, 2012 10:54 AM
To: NT System Admin Issues
Subject: in-depth AD

It's a long story, aren't they all, but the root of my issue is this: I am 
getting Event ID 447 for Database Corruption on ntds.dit. Microsoft is telling 
me to do an authoritative restore. Problem is this problem goes back to 
January; it is highly doubtful I can locate a backup pre-dating that time 
frame. I inherited this mess and am just trying to fix it. This corruption is 
causing several different problems (naturally).

What I want to know from the collective list wisdom and knowledge is... is it 
possible to use a tool, such as adsiedit, to locate a specific object (it is 
called out specifically in the aforementioned event) and 
edit/massage/delete/assassinate the object?

Because, as I see it, I have three choices at this point:

1)  Auth restore (highly unlikely)

2)  Edit/massage ntds.dit (maybe?)

3)  Recreate this entire domain from scratch (seven locations 
internationally, hundreds of users and computers, lord knows how many printers 
total, plus Exchange and Great Plains, permissions on umpty-hundred shares - 
just shoot me now)

Daniel Chenault
dchena...@lgnetworksinc.commailto:dchena...@lgnetworksinc.com
Office: 972-528-6546 x 1002
Fax: 972-982-0054
9550 Skillman Road
Suite 500
Dallas, TX 75243
[Description: Description: cid:image001.jpg@01CCF24C.F9B05160]


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana

RE: in-depth AD

2012-06-12 Thread Damien Solodow
Ah... I was thinking something different based on what you were saying earlier.

Are able to get a successful system state backup from that DC?
Also, what Windows version is the DC in question?

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Daniel Chenault [mailto:dchena...@lgnetworksinc.com]
Sent: Tuesday, June 12, 2012 2:38 PM
To: NT System Admin Issues
Subject: RE: in-depth AD

It's an object of type... uh... I dunno... you tell me...

NTDS (1836) A bad page link (error -327) has been detected in a B+ Tree 
(ObjectID: 163, PgnoRoot: 952) of database c:\windows\ntds\ntds.dit (2596 = 
3372, 3369)


Daniel Chenault
dchena...@lgnetworksinc.commailto:dchena...@lgnetworksinc.com
[Description: Description: cid:image001.jpg@01CCF24C.F9B05160]

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Tuesday, June 12, 2012 1:27 PM
To: NT System Admin Issues
Subject: RE: in-depth AD

Couple questions:

1)  I assume there are multiple domain controllers? Do they all report this 
same error or is it just one DC?

2)  What object is an error being reported on? Depending on the object type 
you may have different options for dealing with it

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Daniel Chenault 
[mailto:dchena...@lgnetworksinc.com]mailto:[mailto:dchena...@lgnetworksinc.com]
Sent: Tuesday, June 12, 2012 2:19 PM
To: NT System Admin Issues
Subject: RE: in-depth AD

Failed with an error (1206 I believe) stating the database is corrupt.

Let me clarify: I, and Microsoft, have run every possible switch or command 
available via ntdsutil and esentutl. Each one failed with an error stating 
corruption. Wanting to try and edit the file manually is not a whim or a wild 
idea but a last-ditch effort unless someone has a better idea.

Daniel Chenault
dchena...@lgnetworksinc.commailto:dchena...@lgnetworksinc.com
[Description: Description: cid:image001.jpg@01CCF24C.F9B05160]

From: Michael B. Smith 
[mailto:mich...@smithcons.com]mailto:[mailto:mich...@smithcons.com]
Sent: Tuesday, June 12, 2012 11:56 AM
To: NT System Admin Issues
Subject: RE: in-depth AD

Have you done a defrag of the ntds.dit?

From: Daniel Chenault 
[mailto:dchena...@lgnetworksinc.com]mailto:[mailto:dchena...@lgnetworksinc.com]
Sent: Tuesday, June 12, 2012 12:23 PM
To: NT System Admin Issues
Subject: RE: in-depth AD

Oh yes, it's up and running. Basic AD functionality is there; I can create 
users, assign permissions and other simple stuff. No replication is happening 
and it's to the point that I cannot open the EMC.

Daniel Chenault
dchena...@lgnetworksinc.commailto:dchena...@lgnetworksinc.com
[Description: Description: cid:image001.jpg@01CCF24C.F9B05160]

From: Brian Desmond 
[mailto:br...@briandesmond.com]mailto:[mailto:br...@briandesmond.com]
Sent: Tuesday, June 12, 2012 11:13 AM
To: NT System Admin Issues
Subject: RE: in-depth AD

Does the machine boot?

Thanks,
Brian Desmond
br...@briandesmond.commailto:br...@briandesmond.com

w - 312.625.1438 | c   - 312.731.3132

From: Daniel Chenault 
[mailto:dchena...@lgnetworksinc.com]mailto:[mailto:dchena...@lgnetworksinc.com]
Sent: Tuesday, June 12, 2012 10:54 AM
To: NT System Admin Issues
Subject: in-depth AD

It's a long story, aren't they all, but the root of my issue is this: I am 
getting Event ID 447 for Database Corruption on ntds.dit. Microsoft is telling 
me to do an authoritative restore. Problem is this problem goes back to 
January; it is highly doubtful I can locate a backup pre-dating that time 
frame. I inherited this mess and am just trying to fix it. This corruption is 
causing several different problems (naturally).

What I want to know from the collective list wisdom and knowledge is... is it 
possible to use a tool, such as adsiedit, to locate a specific object (it is 
called out specifically in the aforementioned event) and 
edit/massage/delete/assassinate the object?

Because, as I see it, I have three choices at this point:

1)  Auth restore (highly unlikely)

2)  Edit/massage ntds.dit (maybe?)

3)  Recreate this entire domain from scratch (seven locations 
internationally, hundreds of users and computers, lord knows how many printers 
total, plus Exchange and Great Plains, permissions on umpty-hundred shares - 
just shoot me now)

Daniel Chenault
dchena...@lgnetworksinc.commailto:dchena...@lgnetworksinc.com
Office: 972-528-6546 x 1002
Fax: 972-982-0054
9550 Skillman Road
Suite 500
Dallas, TX 75243
[Description: Description: cid:image001.jpg@01CCF24C.F9B05160]


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe

RE: Powershell and dos batch

2012-06-06 Thread Damien Solodow
Did you run the set-executionpolicy like I mentioned?
If so, what is the exact error you are receiving when running the batch?

From: itli...@imcu.com [itli...@imcu.com]
Sent: Wednesday, June 06, 2012 1:00 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

Not helping…

From: Joseph L. Casale [mailto:jcas...@activenetwerx.com]
Posted At: Wednesday, June 06, 2012 12:49 PM
Posted To: itli...@imcu.com
Conversation: Powershell and dos batch
Subject: RE: Powershell and dos batch

From a DOS shell, type `powershell.exe -?` and you'll see how to invoke a 
session with a script and all the other options which may need to apply.

jlc

From: itli...@imcu.commailto:itli...@imcu.com [itli...@imcu.com]
Sent: Wednesday, June 06, 2012 10:07 AM
To: NT System Admin Issues
Subject: Powershell and dos batch
I have need to running a powershell script for Backup Exec 2012 through a DOS 
batch file.
Here is what I have so far:

::Batch File
::powershell

C:\windows\system32\WindowsPowerShell\v1.0\powershell.exe 
'e:\in01\oper\task\BackupJob.ps1'
exit
___
BackupJob.ps1
Import-Module BEMCLI | Get-BEJob -Name BackupJob-Full | Start-BEJob | exit


Where the BackupJob is already set up in the GUI library on the server.
I get nothing.
The batch file just finishes.
I put a pause after it and I see no errors?
So what am I doing wrong and how do I make it work?
Thanks


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

Re: Powershell and dos batch

2012-06-06 Thread Damien Solodow
Actually all current powershell versions (including the forthcoming 3.0) 
install in that path.
--
Sent using BlackBerry


From: Miller Bonnie L. [mailto:mille...@mukilteo.wednet.edu]
Sent: Wednesday, June 06, 2012 02:47 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: RE: Powershell and dos batch

Do they require Powershell v2?  I see you are using v1.0.

From: itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Wednesday, June 06, 2012 10:36 AM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

I did what you said.
Here is my error so far.
The term 'GET-BEJob' is not recognized as the name of a cmdlet, function, scri
t file, or operable program. Check the spelling of the name, or if a path was
ncluded, verify that the path is correct and try again.
At C:\WINDOWS\system32\WindowsPowerShell\v1.0\BackupJob.ps1:1 char:33
+ Import-module BEMCLI | GET-BEJob   Test-Full | START-BEJob
+ CategoryInfo  : ObjectNotFound: (GET-BEJob:String) [], CommandNo
   tFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Posted At: Wednesday, June 06, 2012 1:18 PM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: Powershell and dos batch
Subject: RE: Powershell and dos batch

Did you run the set-executionpolicy like I mentioned?
If so, what is the exact error you are receiving when running the batch?

From: itli...@imcu.commailto:itli...@imcu.com [itli...@imcu.com]
Sent: Wednesday, June 06, 2012 1:00 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch
Not helping…

From: Joseph L. Casale 
[mailto:jcas...@activenetwerx.com]mailto:[mailto:jcas...@activenetwerx.com]
Posted At: Wednesday, June 06, 2012 12:49 PM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: Powershell and dos batch
Subject: RE: Powershell and dos batch

From a DOS shell, type `powershell.exe -?` and you'll see how to invoke a 
session with a script and all the other options which may need to apply.

jlc

From: itli...@imcu.commailto:itli...@imcu.com [itli...@imcu.com]
Sent: Wednesday, June 06, 2012 10:07 AM
To: NT System Admin Issues
Subject: Powershell and dos batch
I have need to running a powershell script for Backup Exec 2012 through a DOS 
batch file.
Here is what I have so far:

::Batch File
::powershell

C:\windows\system32\WindowsPowerShell\v1.0\powershell.exe 
'e:\in01\oper\task\BackupJob.ps1'
exit
___
BackupJob.ps1
Import-Module BEMCLI | Get-BEJob -Name BackupJob-Full | Start-BEJob | exit


Where the BackupJob is already set up in the GUI library on the server.
I get nothing.
The batch file just finishes.
I put a pause after it and I see no errors?
So what am I doing wrong and how do I make it work?
Thanks


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana

Re: Powershell and dos batch

2012-06-06 Thread Damien Solodow
Add -confirm:0 as a parameter to start-bejob
--Original Message--
From: itli...@imcu.com
To: NT System Admin Issues
ReplyTo: NT System Admin Issues
Subject: RE: Powershell and dos batch
Sent: Jun 6, 2012 2:53 PM

How do I push the confirm to Y?
 
 
 
From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Posted At: Wednesday, June 06, 2012 2:06 PM
Posted To: itli...@imcu.com
Conversation: Powershell and dos batch
Subject: RE: Powershell and dos batch
 
Ah. Change your .ps1 file;
Import-module bemcli
Get-BEJob -Name BackupJob-Full | Start-BEJob
 
DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE
 
From: itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Wednesday, June 06, 2012 1:36 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch
 
I did what you said.
Here is my error so far.
The term 'GET-BEJob' is not recognized as the name of a cmdlet, function, scri
t file, or operable program. Check the spelling of the name, or if a path was
ncluded, verify that the path is correct and try again.
At C:\WINDOWS\system32\WindowsPowerShell\v1.0\BackupJob.ps1:1 char:33
+ Import-module BEMCLI | GET-BEJob   Test-Full | START-BEJob
    + CategoryInfo  : ObjectNotFound: (GET-BEJob:String) [], CommandNo
   tFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
 
From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Posted At: Wednesday, June 06, 2012 1:18 PM
Posted To: itli...@imcu.com
Conversation: Powershell and dos batch
Subject: RE: Powershell and dos batch
 
Did you run the set-executionpolicy like I mentioned?
If so, what is the exact error you are receiving when running the batch?
From: itli...@imcu.com [itli...@imcu.com]
Sent: Wednesday, June 06, 2012 1:00 
--
Sent using BlackBerry

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: Powershell and dos batch

2012-06-06 Thread Damien Solodow
I blame MBS. ;)

I think it’s because the newer versions are fully backward compatible so there 
is no reason for parallel installs. So by putting it in the same directory 
scripts and the like invoking powershell aren’t broken by new versions.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Miller Bonnie L. [mailto:mille...@mukilteo.wednet.edu]
Sent: Wednesday, June 06, 2012 4:49 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

Ah, did not know that!  I wonder who thought up that gem?  =)

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Wednesday, June 06, 2012 12:47 PM
To: NT System Admin Issues
Subject: Re: Powershell and dos batch

Actually all current powershell versions (including the forthcoming 3.0) 
install in that path.
--
Sent using BlackBerry


From: Miller Bonnie L. [mailto:mille...@mukilteo.wednet.edu]
Sent: Wednesday, June 06, 2012 02:47 PM
To: NT System Admin Issues 
ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com
Subject: RE: Powershell and dos batch

Do they require Powershell v2?  I see you are using v1.0.

From: itli...@imcu.commailto:itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Wednesday, June 06, 2012 10:36 AM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

I did what you said.
Here is my error so far.
The term 'GET-BEJob' is not recognized as the name of a cmdlet, function, scri
t file, or operable program. Check the spelling of the name, or if a path was
ncluded, verify that the path is correct and try again.
At C:\WINDOWS\system32\WindowsPowerShell\v1.0\BackupJob.ps1:1 char:33
+ Import-module BEMCLI | GET-BEJob   Test-Full | START-BEJob
+ CategoryInfo  : ObjectNotFound: (GET-BEJob:String) [], CommandNo
   tFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Posted At: Wednesday, June 06, 2012 1:18 PM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: Powershell and dos batch
Subject: RE: Powershell and dos batch

Did you run the set-executionpolicy like I mentioned?
If so, what is the exact error you are receiving when running the batch?

From: itli...@imcu.commailto:itli...@imcu.com [itli...@imcu.com]
Sent: Wednesday, June 06, 2012 1:00 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch
Not helping…

From: Joseph L. Casale 
[mailto:jcas...@activenetwerx.com]mailto:[mailto:jcas...@activenetwerx.com]
Posted At: Wednesday, June 06, 2012 12:49 PM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: Powershell and dos batch
Subject: RE: Powershell and dos batch

From a DOS shell, type `powershell.exe -?` and you'll see how to invoke a 
session with a script and all the other options which may need to apply.

jlc

From: itli...@imcu.commailto:itli...@imcu.com [itli...@imcu.com]
Sent: Wednesday, June 06, 2012 10:07 AM
To: NT System Admin Issues
Subject: Powershell and dos batch
I have need to running a powershell script for Backup Exec 2012 through a DOS 
batch file.
Here is what I have so far:

::Batch File
::powershell

C:\windows\system32\WindowsPowerShell\v1.0\powershell.exe 
'e:\in01\oper\task\BackupJob.ps1'
exit
___
BackupJob.ps1
Import-Module BEMCLI | Get-BEJob -Name BackupJob-Full | Start-BEJob | exit


Where the BackupJob is already set up in the GUI library on the server.
I get nothing.
The batch file just finishes.
I put a pause after it and I see no errors?
So what am I doing wrong and how do I make it work?
Thanks


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here

RE: Powershell and dos batch

2012-06-06 Thread Damien Solodow
Who reads those? ;)
And yeah, I did read through the ones for the most recent 3.0 RC. I did like 
the number of “this will now throw an error because it should have before”

On a related note, any idea how existing modules like Exchange 2010 and the MS 
AD module will work with 3.0? I’ll wager the Citrix and VMware ones will need 
updates, and I know there is a workaround required with SharePoint 2010…

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Wednesday, June 06, 2012 6:44 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

OH NO THEY AREN’T fully backward compatible.  Read your release notes.

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Wednesday, June 06, 2012 5:41 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

I blame MBS. ;)

I think it’s because the newer versions are fully backward compatible so there 
is no reason for parallel installs. So by putting it in the same directory 
scripts and the like invoking powershell aren’t broken by new versions.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Miller Bonnie L. 
[mailto:mille...@mukilteo.wednet.edu]mailto:[mailto:mille...@mukilteo.wednet.edu]
Sent: Wednesday, June 06, 2012 4:49 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

Ah, did not know that!  I wonder who thought up that gem?  =)

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Wednesday, June 06, 2012 12:47 PM
To: NT System Admin Issues
Subject: Re: Powershell and dos batch

Actually all current powershell versions (including the forthcoming 3.0) 
install in that path.
--
Sent using BlackBerry


From: Miller Bonnie L. [mailto:mille...@mukilteo.wednet.edu]
Sent: Wednesday, June 06, 2012 02:47 PM
To: NT System Admin Issues 
ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com
Subject: RE: Powershell and dos batch

Do they require Powershell v2?  I see you are using v1.0.

From: itli...@imcu.commailto:itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Wednesday, June 06, 2012 10:36 AM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

I did what you said.
Here is my error so far.
The term 'GET-BEJob' is not recognized as the name of a cmdlet, function, scri
t file, or operable program. Check the spelling of the name, or if a path was
ncluded, verify that the path is correct and try again.
At C:\WINDOWS\system32\WindowsPowerShell\v1.0\BackupJob.ps1:1 char:33
+ Import-module BEMCLI | GET-BEJob   Test-Full | START-BEJob
+ CategoryInfo  : ObjectNotFound: (GET-BEJob:String) [], CommandNo
   tFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Posted At: Wednesday, June 06, 2012 1:18 PM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: Powershell and dos batch
Subject: RE: Powershell and dos batch

Did you run the set-executionpolicy like I mentioned?
If so, what is the exact error you are receiving when running the batch?

From: itli...@imcu.commailto:itli...@imcu.com [itli...@imcu.com]
Sent: Wednesday, June 06, 2012 1:00 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch
Not helping…

From: Joseph L. Casale 
[mailto:jcas...@activenetwerx.com]mailto:[mailto:jcas...@activenetwerx.com]
Posted At: Wednesday, June 06, 2012 12:49 PM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: Powershell and dos batch
Subject: RE: Powershell and dos batch

From a DOS shell, type `powershell.exe -?` and you'll see how to invoke a 
session with a script and all the other options which may need to apply.

jlc

From: itli...@imcu.commailto:itli...@imcu.com [itli...@imcu.com]
Sent: Wednesday, June 06, 2012 10:07 AM
To: NT System Admin Issues
Subject: Powershell and dos batch
I have need to running a powershell script for Backup Exec 2012 through a DOS 
batch file.
Here is what I have so far:

::Batch File
::powershell

C:\windows\system32\WindowsPowerShell\v1.0\powershell.exe 
'e:\in01\oper\task\BackupJob.ps1'
exit
___
BackupJob.ps1
Import-Module BEMCLI | Get-BEJob -Name BackupJob-Full | Start-BEJob | exit


Where the BackupJob is already set up in the GUI library on the server.
I get nothing.
The batch file just finishes.
I put a pause after it and I see no errors?
So what am I doing wrong and how do I make it work?
Thanks


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana

RE: Powershell and dos batch

2012-06-06 Thread Damien Solodow
That’s what I was afraid of. I hope that Exchange won’t require a new version 
or SP to support 3.0 as I’d hate to have my management tools broken.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Wednesday, June 06, 2012 8:17 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

Pretty much everything will require updates.

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Wednesday, June 06, 2012 7:45 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

Who reads those? ;)
And yeah, I did read through the ones for the most recent 3.0 RC. I did like 
the number of “this will now throw an error because it should have before”

On a related note, any idea how existing modules like Exchange 2010 and the MS 
AD module will work with 3.0? I’ll wager the Citrix and VMware ones will need 
updates, and I know there is a workaround required with SharePoint 2010…

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Michael B. Smith 
[mailto:mich...@smithcons.com]mailto:[mailto:mich...@smithcons.com]
Sent: Wednesday, June 06, 2012 6:44 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

OH NO THEY AREN’T fully backward compatible.  Read your release notes.

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Wednesday, June 06, 2012 5:41 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

I blame MBS. ;)

I think it’s because the newer versions are fully backward compatible so there 
is no reason for parallel installs. So by putting it in the same directory 
scripts and the like invoking powershell aren’t broken by new versions.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Miller Bonnie L. 
[mailto:mille...@mukilteo.wednet.edu]mailto:[mailto:mille...@mukilteo.wednet.edu]
Sent: Wednesday, June 06, 2012 4:49 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

Ah, did not know that!  I wonder who thought up that gem?  =)

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Wednesday, June 06, 2012 12:47 PM
To: NT System Admin Issues
Subject: Re: Powershell and dos batch

Actually all current powershell versions (including the forthcoming 3.0) 
install in that path.
--
Sent using BlackBerry


From: Miller Bonnie L. [mailto:mille...@mukilteo.wednet.edu]
Sent: Wednesday, June 06, 2012 02:47 PM
To: NT System Admin Issues 
ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com
Subject: RE: Powershell and dos batch

Do they require Powershell v2?  I see you are using v1.0.

From: itli...@imcu.commailto:itli...@imcu.com [mailto:itli...@imcu.com]
Sent: Wednesday, June 06, 2012 10:36 AM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch

I did what you said.
Here is my error so far.
The term 'GET-BEJob' is not recognized as the name of a cmdlet, function, scri
t file, or operable program. Check the spelling of the name, or if a path was
ncluded, verify that the path is correct and try again.
At C:\WINDOWS\system32\WindowsPowerShell\v1.0\BackupJob.ps1:1 char:33
+ Import-module BEMCLI | GET-BEJob   Test-Full | START-BEJob
+ CategoryInfo  : ObjectNotFound: (GET-BEJob:String) [], CommandNo
   tFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Posted At: Wednesday, June 06, 2012 1:18 PM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: Powershell and dos batch
Subject: RE: Powershell and dos batch

Did you run the set-executionpolicy like I mentioned?
If so, what is the exact error you are receiving when running the batch?

From: itli...@imcu.commailto:itli...@imcu.com [itli...@imcu.com]
Sent: Wednesday, June 06, 2012 1:00 PM
To: NT System Admin Issues
Subject: RE: Powershell and dos batch
Not helping…

From: Joseph L. Casale 
[mailto:jcas...@activenetwerx.com]mailto:[mailto:jcas...@activenetwerx.com]
Posted At: Wednesday, June 06, 2012 12:49 PM
Posted To: itli...@imcu.commailto:itli...@imcu.com
Conversation: Powershell and dos batch
Subject: RE: Powershell and dos batch

From a DOS shell, type `powershell.exe -?` and you'll see how to invoke a 
session with a script and all the other options which may need to apply.

jlc

From: itli...@imcu.commailto:itli...@imcu.com [itli...@imcu.com]
Sent: Wednesday, June 06, 2012 10:07 AM
To: NT System Admin Issues
Subject: Powershell and dos batch
I have need to running a powershell script for Backup Exec 2012 through a DOS 
batch file.
Here is what I have so far:

::Batch File
::powershell

C:\windows\system32

RE: moving Exchange

2012-05-31 Thread Damien Solodow
What role(s) are on this under-sized box?

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Daniel Chenault [mailto:dchena...@lgnetworksinc.com]
Sent: Thursday, May 31, 2012 4:41 PM
To: NT System Admin Issues
Subject: moving Exchange

Ex2010 currently on an underpowered box. Plan is:

1)  Install Ex on beefier box (member server of same domain)

2)  Move mailboxes to new box

3)  Uninstall Ex from old box and re-use serial

First: it's my understanding that Outlook profiles will be automagically 
updated to point to the mailbox's new location. Correct?
Second: Anyone see a problem re-using the serial key?

Seems a simple plan but you know how that goes

Daniel Chenault
dchena...@lgnetworksinc.commailto:dchena...@lgnetworksinc.com
Office: 972-528-6546 x 1002
Fax: 972-982-0054
9550 Skillman Road
Suite 500
Dallas, TX 75243
[Description: Description: cid:image001.jpg@01CCF24C.F9B05160]


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmininline: image001.jpg

RE: moving Exchange

2012-05-31 Thread Damien Solodow
In this case I was asking which of the Exchange roles were present, but since 
it's the only one that answers the question.

What might be your smoothest thing is to install the hub transport and mailbox 
roles on the new server and then move the mailboxes. This can be done online 
and non-disruptively, and the user transition will be transparent.

After all the mailboxes are moved, you can remote the datastores from the 
current server and remove the mailbox role. This will get rid of the IS 
(solving your immediate need) and give you a chance to make a smooth cutover 
for hub transport (should be easy) and client access (not as much).

At that second stage, you might want to look at some options for design for 
your Exchange org to make your life easier in the future, but it depends on how 
many mailboxes you're looking at.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Daniel Chenault [mailto:dchena...@lgnetworksinc.com]
Sent: Thursday, May 31, 2012 5:07 PM
To: NT System Admin Issues
Subject: RE: moving Exchange

It's the only Ex box in the org. Perfmon is showing me that the IS is what is 
dragging the box down (and it is used for some other things as well that will 
be much harder to move) thus I want to get Exchange off it.

Daniel Chenault
dchena...@lgnetworksinc.commailto:dchena...@lgnetworksinc.com
[Description: Description: cid:image001.jpg@01CCF24C.F9B05160]

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Thursday, May 31, 2012 3:49 PM
To: NT System Admin Issues
Subject: RE: moving Exchange

What role(s) are on this under-sized box?

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Daniel Chenault 
[mailto:dchena...@lgnetworksinc.com]mailto:[mailto:dchena...@lgnetworksinc.com]
Sent: Thursday, May 31, 2012 4:41 PM
To: NT System Admin Issues
Subject: moving Exchange

Ex2010 currently on an underpowered box. Plan is:

1)  Install Ex on beefier box (member server of same domain)

2)  Move mailboxes to new box

3)  Uninstall Ex from old box and re-use serial

First: it's my understanding that Outlook profiles will be automagically 
updated to point to the mailbox's new location. Correct?
Second: Anyone see a problem re-using the serial key?

Seems a simple plan but you know how that goes

Daniel Chenault
dchena...@lgnetworksinc.commailto:dchena...@lgnetworksinc.com
Office: 972-528-6546 x 1002
Fax: 972-982-0054
9550 Skillman Road
Suite 500
Dallas, TX 75243
[Description: Description: cid:image001.jpg@01CCF24C.F9B05160]


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmininline: image001.jpg

Re: moving Exchange

2012-05-31 Thread Damien Solodow
Message hygiene apps are usually a good thing to have on Exchange boxes hosting 
transport roles. ;)
--
Sent using BlackBerry


From: John Cook [mailto:john.c...@pfsf.org]
Sent: Thursday, May 31, 2012 05:21 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: Re: moving Exchange

The only app on an Exchange box should be Exchange IMHO. Anything else is just 
asking for problems.
John W. Cook
Network Operations Manager
Partnership for Strong Families

From: Daniel Chenault [mailto:dchena...@lgnetworksinc.com]
Sent: Thursday, May 31, 2012 05:06 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: RE: moving Exchange

It’s the only Ex box in the org. Perfmon is showing me that the IS is what is 
dragging the box down (and it is used for some other things as well that will 
be much harder to move) thus I want to get Exchange off it.

Daniel Chenault
dchena...@lgnetworksinc.com
[Description: Description: cid:image001.jpg@01CCF24C.F9B05160]

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Sent: Thursday, May 31, 2012 3:49 PM
To: NT System Admin Issues
Subject: RE: moving Exchange

What role(s) are on this under-sized box?

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Daniel Chenault 
[mailto:dchena...@lgnetworksinc.com]mailto:[mailto:dchena...@lgnetworksinc.com]
Sent: Thursday, May 31, 2012 4:41 PM
To: NT System Admin Issues
Subject: moving Exchange

Ex2010 currently on an underpowered box. Plan is:

1)  Install Ex on beefier box (member server of same domain)

2)  Move mailboxes to new box

3)  Uninstall Ex from old box and re-use serial

First: it’s my understanding that Outlook profiles will be automagically 
updated to point to the mailbox’s new location. Correct?
Second: Anyone see a problem re-using the serial key?

Seems a simple plan but you know how that goes….

Daniel Chenault
dchena...@lgnetworksinc.commailto:dchena...@lgnetworksinc.com
Office: 972-528-6546 x 1002
Fax: 972-982-0054
9550 Skillman Road
Suite 500
Dallas, TX 75243
[Description: Description: cid:image001.jpg@01CCF24C.F9B05160]


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

This email and any attached files are confidential and intended solely for the 
intended recipient(s). If you are not the named recipient you should not read, 
distribute, copy or alter this email. Any views or opinions expressed in this 
email are those of the author and do not represent those of the company. 
Warning: Although precautions have been taken to make sure no viruses are 
present in this email, the company cannot accept responsibility for any loss or 
damage that arise from the use of this email or attachments.


CONFIDENTIALITY STATEMENT: The information transmitted, or contained or 
attached to or with this Notice is intended only for the person or entity to 
which it is addressed and may contain Protected Health Information (PHI), 
confidential and/or privileged material. Any review, transmission, 
dissemination, or other use of, and taking any action in reliance upon this 
information by persons or entities other than the intended recipient without 
the express written consent of the sender are prohibited. This information may 
be protected by the Health Insurance Portability and Accountability Act of 1996 
(HIPAA), and other Federal and Florida laws. Improper or unauthorized use or 
disclosure of this information could result in civil and/or criminal penalties.
Consider the environment. Please don't print this e-mail unless you really need 
to.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana

Re: Server 2012 RC available

2012-05-31 Thread Damien Solodow
Yep. :) I noticed that on the core install, sconfig no longer has the option to 
install the gui. :(
--
Sent using BlackBerry


From: Steve Ens [mailto:stevey...@gmail.com]
Sent: Thursday, May 31, 2012 05:45 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: Server 2012 RC available

it's up!

http://technet.microsoft.com/en-us/evalcenter/hh670538.aspx


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


RE: OT:windows phone and outlook notes

2012-05-03 Thread Damien Solodow
It would explain the collection of cheap romance novels...

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE


-Original Message-
From: Kurt Buff [mailto:kurt.b...@gmail.com] 
Sent: Thursday, May 03, 2012 2:58 PM
To: NT System Admin Issues
Subject: Re: OT:windows phone and outlook notes

Does Bob live in a skull on your shelf in your hidden basement?

On Thu, May 3, 2012 at 10:32 AM, Steven Peck sep...@gmail.com wrote:
 Lately?  I don't talk to myself, I talk to Bob.  I talk to Bob all the 
 time.  Bob gets irritated because no one else can see him.  I have 
 found if I just wear a blue tooth headset people seem less disturbed 
 by my conversations.
 :)
 On Thu, May 3, 2012 at 9:32 AM, Rod Trent rodtr...@myitforum.com wrote:

 Have you been talking to yourself more lately?  In full conversations?



 From: Steven Peck [mailto:sep...@gmail.com]

 Sent: Thursday, May 03, 2012 12:21 PM

 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes



 Hrmm.  I did that from memory and now that I am at work I don't see 
 it on Office 2010.  I wonder if it was in 2007 version or I'm just 
 slowly going crazy.









 On Thu, May 3, 2012 at 8:33 AM, Steven M. Caesare 
 scaes...@caesare.com
 wrote:

 Thirded.



 -sc



 From: Rod Trent [mailto:rodtr...@myitforum.com]
 Sent: Thursday, May 03, 2012 11:18 AM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 Same here.  I have that option for emails, but not for Notes.



 From: Michael B. Smith [mailto:mich...@smithcons.com]
 Sent: Thursday, May 03, 2012 11:08 AM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 I have it for Evernote (which I use extensively, since it’s supported 
 on my Kindle), but not for OneNote. And I do have OneNote installed too.



 From: Trees, Ray [mailto:rtr...@key.net]
 Sent: Thursday, May 03, 2012 10:58 AM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



     Strange, I can’t find that option but it would be 
 very handy.



 From: Steven Peck [mailto:sep...@gmail.com]
 Sent: Wednesday, May 02, 2012 8:34 PM


 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes



 And for OneNote



 Go into Outlook Notes,

 Select them all

 Right Click and

 'Send to OneNote'



 No add on needed :)



 On Wed, May 2, 2012 at 4:34 PM, Rod Trent rodtr...@myitforum.com wrote:

 Incidentally, I went into my Outlook Notes area, chose all notes, and 
 used the Evernote add-in for Outlook and exported everything to 
 Evernote.  Quick and easy.



 One other thing for synching Outlook notes, if you use Android.  I 
 keep Outlook synched with Android using CompanionLink.



 http://www.companionlink.com/





 From: Steven M. Caesare [mailto:scaes...@caesare.com]
 Sent: Wednesday, May 02, 2012 7:22 PM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 That’s what I’ve been using as well…



 -sc



 From: Rod Trent [mailto:rodtr...@myitforum.com]
 Sent: Wednesday, May 02, 2012 7:16 PM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 That’s why I use Evernote.  Evernote works the same across Android, 
 iOS, Windows – even the Windows 8 app (downloadable from the Windows 8 
 market).



 OneNote is great coupled with Outlook and Exchange, but when you use 
 multiple devices, it’s not a great solution.   Evernote does notes and more.





 From: Steven M. Caesare [mailto:scaes...@caesare.com]
 Sent: Wednesday, May 02, 2012 6:59 PM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 I wish the Android version wasn’t so feature stripped.



 -sc



 From: Micheal Espinola Jr [mailto:michealespin...@gmail.com]
 Sent: Wednesday, May 02, 2012 6:55 PM


 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes



 OneNote is surprisingly awesome.  I'm a converted true believer.

 --
 Espi





 On Wed, May 2, 2012 at 3:48 PM, Trees, Ray rtr...@key.net wrote:

        I'm using OneNote as well and found that I like the 
 flexibility and formatting.  I have copied most of my notes from 
 Outlook into OneNote so I have them.


 -Original Message-
 From: Bill Humphries [mailto:nt...@hedgedigger.com]

 Sent: Wednesday, May 02, 2012 11:55 AM
 To: NT System Admin Issues
 Subject: OT:windows phone and outlook notes

 Hey guys, anyone here using windows phone found a reasonable solution 
 for syncing exchange/outlook notes to your phone?  I'm really missing 
 this and my google-fu is failing me.

 Since I'm so OT anyway, I'll go ahead and day I'm really liking the 
 windows phone interface, just missing some of my favorite apps right now.

 Bill

 ~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
 http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

 ---
 To manage subscriptions click here:
 http://lyris.sunbelt

RE: OT:windows phone and outlook notes

2012-05-03 Thread Damien Solodow
Doubtful; he knows full well how Bob likes to nest in them.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE


-Original Message-
From: Kurt Buff [mailto:kurt.b...@gmail.com] 
Sent: Thursday, May 03, 2012 4:23 PM
To: NT System Admin Issues
Subject: Re: OT:windows phone and outlook notes

Heh.

Jim Butcher might resent that characterization...

Kurt

On Thu, May 3, 2012 at 11:59 AM, Damien Solodow damien.solo...@harrison.edu 
wrote:
 It would explain the collection of cheap romance novels...

 DAMIEN SOLODOW
 Systems Engineer
 317.447.6033 (office)
 317.447.6014 (fax)
 HARRISON COLLEGE


 -Original Message-
 From: Kurt Buff [mailto:kurt.b...@gmail.com]
 Sent: Thursday, May 03, 2012 2:58 PM
 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes

 Does Bob live in a skull on your shelf in your hidden basement?

 On Thu, May 3, 2012 at 10:32 AM, Steven Peck sep...@gmail.com wrote:
 Lately?  I don't talk to myself, I talk to Bob.  I talk to Bob all 
 the time.  Bob gets irritated because no one else can see him.  I 
 have found if I just wear a blue tooth headset people seem less 
 disturbed by my conversations.
 :)
 On Thu, May 3, 2012 at 9:32 AM, Rod Trent rodtr...@myitforum.com wrote:

 Have you been talking to yourself more lately?  In full conversations?



 From: Steven Peck [mailto:sep...@gmail.com]

 Sent: Thursday, May 03, 2012 12:21 PM

 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes



 Hrmm.  I did that from memory and now that I am at work I don't see 
 it on Office 2010.  I wonder if it was in 2007 version or I'm just 
 slowly going crazy.









 On Thu, May 3, 2012 at 8:33 AM, Steven M. Caesare 
 scaes...@caesare.com
 wrote:

 Thirded.



 -sc



 From: Rod Trent [mailto:rodtr...@myitforum.com]
 Sent: Thursday, May 03, 2012 11:18 AM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 Same here.  I have that option for emails, but not for Notes.



 From: Michael B. Smith [mailto:mich...@smithcons.com]
 Sent: Thursday, May 03, 2012 11:08 AM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 I have it for Evernote (which I use extensively, since it’s 
 supported on my Kindle), but not for OneNote. And I do have OneNote 
 installed too.



 From: Trees, Ray [mailto:rtr...@key.net]
 Sent: Thursday, May 03, 2012 10:58 AM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



     Strange, I can’t find that option but it would be 
 very handy.



 From: Steven Peck [mailto:sep...@gmail.com]
 Sent: Wednesday, May 02, 2012 8:34 PM


 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes



 And for OneNote



 Go into Outlook Notes,

 Select them all

 Right Click and

 'Send to OneNote'



 No add on needed :)



 On Wed, May 2, 2012 at 4:34 PM, Rod Trent rodtr...@myitforum.com wrote:

 Incidentally, I went into my Outlook Notes area, chose all notes, 
 and used the Evernote add-in for Outlook and exported everything to 
 Evernote.  Quick and easy.



 One other thing for synching Outlook notes, if you use Android.  I 
 keep Outlook synched with Android using CompanionLink.



 http://www.companionlink.com/





 From: Steven M. Caesare [mailto:scaes...@caesare.com]
 Sent: Wednesday, May 02, 2012 7:22 PM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 That’s what I’ve been using as well…



 -sc



 From: Rod Trent [mailto:rodtr...@myitforum.com]
 Sent: Wednesday, May 02, 2012 7:16 PM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 That’s why I use Evernote.  Evernote works the same across Android, 
 iOS, Windows – even the Windows 8 app (downloadable from the Windows 8 
 market).



 OneNote is great coupled with Outlook and Exchange, but when you use 
 multiple devices, it’s not a great solution.   Evernote does notes and more.





 From: Steven M. Caesare [mailto:scaes...@caesare.com]
 Sent: Wednesday, May 02, 2012 6:59 PM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 I wish the Android version wasn’t so feature stripped.



 -sc



 From: Micheal Espinola Jr [mailto:michealespin...@gmail.com]
 Sent: Wednesday, May 02, 2012 6:55 PM


 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes



 OneNote is surprisingly awesome.  I'm a converted true believer.

 --
 Espi





 On Wed, May 2, 2012 at 3:48 PM, Trees, Ray rtr...@key.net wrote:

        I'm using OneNote as well and found that I like the 
 flexibility and formatting.  I have copied most of my notes from 
 Outlook into OneNote so I have them.


 -Original Message-
 From: Bill Humphries [mailto:nt...@hedgedigger.com]

 Sent: Wednesday, May 02, 2012 11:55 AM
 To: NT System Admin Issues
 Subject: OT:windows phone and outlook notes

 Hey guys, anyone here using windows

Re: OT:windows phone and outlook notes

2012-05-03 Thread Damien Solodow
I think Jim has more than a few of them around though considering his wife 
writes that genre. :)
--
Sent using BlackBerry


- Original Message -
From: Kurt Buff [mailto:kurt.b...@gmail.com]
Sent: Thursday, May 03, 2012 06:12 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: Re: OT:windows phone and outlook notes

Well, yes, Bob does like them - I thought you were referring to Jim's
works, not Bob's preferences.

My mistake...

Kurt

On Thu, May 3, 2012 at 1:30 PM, Damien Solodow
damien.solo...@harrison.edu wrote:
 Doubtful; he knows full well how Bob likes to nest in them.

 DAMIEN SOLODOW
 Systems Engineer
 317.447.6033 (office)
 317.447.6014 (fax)
 HARRISON COLLEGE


 -Original Message-
 From: Kurt Buff [mailto:kurt.b...@gmail.com]
 Sent: Thursday, May 03, 2012 4:23 PM
 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes

 Heh.

 Jim Butcher might resent that characterization...

 Kurt

 On Thu, May 3, 2012 at 11:59 AM, Damien Solodow damien.solo...@harrison.edu 
 wrote:
 It would explain the collection of cheap romance novels...

 DAMIEN SOLODOW
 Systems Engineer
 317.447.6033 (office)
 317.447.6014 (fax)
 HARRISON COLLEGE


 -Original Message-
 From: Kurt Buff [mailto:kurt.b...@gmail.com]
 Sent: Thursday, May 03, 2012 2:58 PM
 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes

 Does Bob live in a skull on your shelf in your hidden basement?

 On Thu, May 3, 2012 at 10:32 AM, Steven Peck sep...@gmail.com wrote:
 Lately?  I don't talk to myself, I talk to Bob.  I talk to Bob all
 the time.  Bob gets irritated because no one else can see him.  I
 have found if I just wear a blue tooth headset people seem less
 disturbed by my conversations.
 :)
 On Thu, May 3, 2012 at 9:32 AM, Rod Trent rodtr...@myitforum.com wrote:

 Have you been talking to yourself more lately?  In full conversations?



 From: Steven Peck [mailto:sep...@gmail.com]

 Sent: Thursday, May 03, 2012 12:21 PM

 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes



 Hrmm.  I did that from memory and now that I am at work I don't see
 it on Office 2010.  I wonder if it was in 2007 version or I'm just
 slowly going crazy.









 On Thu, May 3, 2012 at 8:33 AM, Steven M. Caesare
 scaes...@caesare.com
 wrote:

 Thirded.



 -sc



 From: Rod Trent [mailto:rodtr...@myitforum.com]
 Sent: Thursday, May 03, 2012 11:18 AM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 Same here.  I have that option for emails, but not for Notes.



 From: Michael B. Smith [mailto:mich...@smithcons.com]
 Sent: Thursday, May 03, 2012 11:08 AM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 I have it for Evernote (which I use extensively, since it’s
 supported on my Kindle), but not for OneNote. And I do have OneNote 
 installed too.



 From: Trees, Ray [mailto:rtr...@key.net]
 Sent: Thursday, May 03, 2012 10:58 AM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



     Strange, I can’t find that option but it would be
 very handy.



 From: Steven Peck [mailto:sep...@gmail.com]
 Sent: Wednesday, May 02, 2012 8:34 PM


 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes



 And for OneNote



 Go into Outlook Notes,

 Select them all

 Right Click and

 'Send to OneNote'



 No add on needed :)



 On Wed, May 2, 2012 at 4:34 PM, Rod Trent rodtr...@myitforum.com wrote:

 Incidentally, I went into my Outlook Notes area, chose all notes,
 and used the Evernote add-in for Outlook and exported everything to
 Evernote.  Quick and easy.



 One other thing for synching Outlook notes, if you use Android.  I
 keep Outlook synched with Android using CompanionLink.



 http://www.companionlink.com/





 From: Steven M. Caesare [mailto:scaes...@caesare.com]
 Sent: Wednesday, May 02, 2012 7:22 PM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 That’s what I’ve been using as well…



 -sc



 From: Rod Trent [mailto:rodtr...@myitforum.com]
 Sent: Wednesday, May 02, 2012 7:16 PM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 That’s why I use Evernote.  Evernote works the same across Android,
 iOS, Windows – even the Windows 8 app (downloadable from the Windows 8 
 market).



 OneNote is great coupled with Outlook and Exchange, but when you use
 multiple devices, it’s not a great solution.   Evernote does notes and 
 more.





 From: Steven M. Caesare [mailto:scaes...@caesare.com]
 Sent: Wednesday, May 02, 2012 6:59 PM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 I wish the Android version wasn’t so feature stripped.



 -sc



 From: Micheal Espinola Jr [mailto:michealespin...@gmail.com]
 Sent: Wednesday, May 02, 2012 6:55 PM


 To: NT System Admin Issues
 Subject: Re

Re: OT:windows phone and outlook notes

2012-05-03 Thread Damien Solodow
For extra fun look them up on Twitter. Molly often torments Harry. 
--
Sent using BlackBerry


- Original Message -
From: Kurt Buff [mailto:kurt.b...@gmail.com]
Sent: Thursday, May 03, 2012 07:04 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: Re: OT:windows phone and outlook notes

True, which is why it's funny to see him tweak Bob about it - perhaps
a not-so-sly dig at his wife...

Kurt


On Thu, May 3, 2012 at 3:18 PM, Damien Solodow
damien.solo...@harrison.edu wrote:
 I think Jim has more than a few of them around though considering his wife 
 writes that genre. :)
 --
 Sent using BlackBerry


 - Original Message -
 From: Kurt Buff [mailto:kurt.b...@gmail.com]
 Sent: Thursday, May 03, 2012 06:12 PM
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Subject: Re: OT:windows phone and outlook notes

 Well, yes, Bob does like them - I thought you were referring to Jim's
 works, not Bob's preferences.

 My mistake...

 Kurt

 On Thu, May 3, 2012 at 1:30 PM, Damien Solodow
 damien.solo...@harrison.edu wrote:
 Doubtful; he knows full well how Bob likes to nest in them.

 DAMIEN SOLODOW
 Systems Engineer
 317.447.6033 (office)
 317.447.6014 (fax)
 HARRISON COLLEGE


 -Original Message-
 From: Kurt Buff [mailto:kurt.b...@gmail.com]
 Sent: Thursday, May 03, 2012 4:23 PM
 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes

 Heh.

 Jim Butcher might resent that characterization...

 Kurt

 On Thu, May 3, 2012 at 11:59 AM, Damien Solodow 
 damien.solo...@harrison.edu wrote:
 It would explain the collection of cheap romance novels...

 DAMIEN SOLODOW
 Systems Engineer
 317.447.6033 (office)
 317.447.6014 (fax)
 HARRISON COLLEGE


 -Original Message-
 From: Kurt Buff [mailto:kurt.b...@gmail.com]
 Sent: Thursday, May 03, 2012 2:58 PM
 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes

 Does Bob live in a skull on your shelf in your hidden basement?

 On Thu, May 3, 2012 at 10:32 AM, Steven Peck sep...@gmail.com wrote:
 Lately?  I don't talk to myself, I talk to Bob.  I talk to Bob all
 the time.  Bob gets irritated because no one else can see him.  I
 have found if I just wear a blue tooth headset people seem less
 disturbed by my conversations.
 :)
 On Thu, May 3, 2012 at 9:32 AM, Rod Trent rodtr...@myitforum.com wrote:

 Have you been talking to yourself more lately?  In full conversations?



 From: Steven Peck [mailto:sep...@gmail.com]

 Sent: Thursday, May 03, 2012 12:21 PM

 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes



 Hrmm.  I did that from memory and now that I am at work I don't see
 it on Office 2010.  I wonder if it was in 2007 version or I'm just
 slowly going crazy.









 On Thu, May 3, 2012 at 8:33 AM, Steven M. Caesare
 scaes...@caesare.com
 wrote:

 Thirded.



 -sc



 From: Rod Trent [mailto:rodtr...@myitforum.com]
 Sent: Thursday, May 03, 2012 11:18 AM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 Same here.  I have that option for emails, but not for Notes.



 From: Michael B. Smith [mailto:mich...@smithcons.com]
 Sent: Thursday, May 03, 2012 11:08 AM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 I have it for Evernote (which I use extensively, since it’s
 supported on my Kindle), but not for OneNote. And I do have OneNote 
 installed too.



 From: Trees, Ray [mailto:rtr...@key.net]
 Sent: Thursday, May 03, 2012 10:58 AM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



     Strange, I can’t find that option but it would be
 very handy.



 From: Steven Peck [mailto:sep...@gmail.com]
 Sent: Wednesday, May 02, 2012 8:34 PM


 To: NT System Admin Issues
 Subject: Re: OT:windows phone and outlook notes



 And for OneNote



 Go into Outlook Notes,

 Select them all

 Right Click and

 'Send to OneNote'



 No add on needed :)



 On Wed, May 2, 2012 at 4:34 PM, Rod Trent rodtr...@myitforum.com wrote:

 Incidentally, I went into my Outlook Notes area, chose all notes,
 and used the Evernote add-in for Outlook and exported everything to
 Evernote.  Quick and easy.



 One other thing for synching Outlook notes, if you use Android.  I
 keep Outlook synched with Android using CompanionLink.



 http://www.companionlink.com/





 From: Steven M. Caesare [mailto:scaes...@caesare.com]
 Sent: Wednesday, May 02, 2012 7:22 PM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 That’s what I’ve been using as well…



 -sc



 From: Rod Trent [mailto:rodtr...@myitforum.com]
 Sent: Wednesday, May 02, 2012 7:16 PM


 To: NT System Admin Issues

 Subject: RE: OT:windows phone and outlook notes



 That’s why I use Evernote.  Evernote works the same across Android,
 iOS, Windows – even the Windows 8 app (downloadable from the Windows 8 
 market

RE: Automated Account Password Reset Programs

2012-04-18 Thread Damien Solodow
Weird; my post must not have gone through.
We use Self Service Reset Password Management from Tools4Ever. It does what 
you're looking for and is really straightforward.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Ziots, Edward [mailto:ezi...@lifespan.org]
Sent: Wednesday, April 18, 2012 9:19 AM
To: NT System Admin Issues
Subject: RE: Automated Account Password Reset Programs

Not using Citrix, been gone for a long time here..

Again still looking for something that will allow users to reset there own 
passwords via a web interface as needed.

Z

Edward Ziots
CISSP, Security +, Network +
Security Engineer
Lifespan Organization
ezi...@lifespan.orgmailto:ezi...@lifespan.org

From: Rankin, James R 
[mailto:kz2...@googlemail.com]mailto:[mailto:kz2...@googlemail.com]
Sent: Tuesday, April 17, 2012 4:40 PM
To: NT System Admin Issues
Subject: Re: Automated Account Password Reset Programs

If you're a citrix platinum customer, you get Single Sign-on thrown in
---Blackberried

From: Ziots, Edward ezi...@lifespan.orgmailto:ezi...@lifespan.org
Date: Tue, 17 Apr 2012 14:27:34 -0400
To: NT System Admin 
Issuesntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com
ReplyTo: NT System Admin Issues 
ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com
Subject: Automated Account Password Reset Programs

For those that are using this for your users in your orgs/business, can anyone 
give me an idea again what folks are using for Automated Password reset tools, 
that would integrate well with 2k8R2 DFL/FFL domain. About 18-20K in accounts. 
Looking for a solution with a Web front end, and the ability to customize the 
questions asked the users before they can reset there passwords.

Z

Edward Ziots
CISSP, Security +, Network +
Security Engineer
Lifespan Organization
ezi...@lifespan.orgmailto:ezi...@lifespan.org


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Changing the IP of the only DC in the domain

2012-04-12 Thread Damien Solodow
Just make sure you update DNS with the new IP, and make sure that the DC is 
looking at either its new IP or localhost for DNS resolution.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Heaton, Joseph@DFG [mailto:jhea...@dfg.ca.gov]
Sent: Thursday, April 12, 2012 10:50 AM
To: NT System Admin Issues
Subject: Changing the IP of the only DC in the domain

I've set up a domain for a proof-of-concept.  I only built a single Win2k8R2 
DC.  I'm now being asked to change the IP subnet for the domain.  I've found 
lots of articles talking about how easy it is to change the IP of a DC, but is 
it the same if it is the only DC?

Thanks,

Joe Heaton

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Start an install when an Uninstall completes?

2012-04-12 Thread Damien Solodow
Magic. ;)
As I recall you can only have one windows installer transaction active at a 
time, so I'd guess it monitors the service.

As far as what the OP is trying to accomplish, I'd say it depends on what is 
being used to deploy. A batch or script can easily be made to wait for the 
first process to complete with an appropriate exit code before launching the 
second process.

From: Michael B. Smith [mich...@smithcons.com]
Sent: Thursday, April 12, 2012 9:25 PM
To: NT System Admin Issues
Subject: RE: Start an install when an Uninstall completes?

I KNOW that. :-P That doesn’t define how it knows when one msiexec is complete 
to know when to start the next one.

From: Rod Trent [mailto:rodtr...@myitforum.com]
Sent: Thursday, April 12, 2012 7:26 PM
To: NT System Admin Issues
Subject: RE: Start an install when an Uninstall completes?

It utilizes a task sequence.
Michael B. Smith mich...@smithcons.commailto:mich...@smithcons.com wrote:
System Center Configuration Manager. :)


No clue how it does it. I would probably look at the registry.


From: Sam Cayze [mailto:sca...@gmail.com]mailto:[mailto:sca...@gmail.com]
Sent: Thursday, April 12, 2012 4:50 PM
To: NT System Admin Issues
Subject: Start an install when an Uninstall completes?


Anyone scripted this yet?


Product 1 is installed.
Product 2 needs to be installed.
Product 1 has to be uninstalled before Product 2 can be installed.


Hoping to roll the MSI /x and MSI /i commands into one script.  Does MSIEXEC 
have some controls for this? Or should I programmatically read the Event Log in 
a repeating loop until the successful uninstall event is posted.  Or maybe scan 
the HKLM\Sofware***\Uninstall registry to see if Product 1 is still in there?


Ideas of what might be the cleanest and most reliable?  I feel like I'm missing 
something very obvious :-\


TIA,

Sam

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

--
Sent from Kaiten Mail for Android. Please excuse my brevity.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: New to virtualization

2012-04-03 Thread Damien Solodow
Yep, ESXi can run off a USB flash drive or a SD card. It's fully supported by 
VMware and often by the vendor as well (I know HP does).
There are a few caveats such as needing a location for scratch space, and a 
couple of other similar things.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: David Mazzaccaro [mailto:david.mazzacc...@hudsonmobility.com]
Sent: Tuesday, April 03, 2012 12:50 PM
To: NT System Admin Issues
Subject: RE: New to virtualization

I am still researching and meeting w/ vendors.
One thing that has just come up w/ a particular vendor.
They are telling me that they would put in 3 hosts, w/ no hard drives and that 
VMware would run off a USB stick???
This sounds pretty cheesy to me... is this common practice?
What are the pros/cons to USB stick vs a pair of mirrored drives on the hosts?



From: Paul Hutchings 
[mailto:paul.hutchi...@mira.co.uk]mailto:[mailto:paul.hutchi...@mira.co.uk]
Sent: Thursday, March 15, 2012 10:44 AM
To: NT System Admin Issues
Subject: RE: New to virtualization

The reality here is that you're not going to spend $130k on a virtualisation 
solution and not want to add more VM's,

Honestly, just add DataCenter from the get-go - you'll make use of it I 
guarantee it.

From: Jonathan Link [mailto:jonathan.l...@gmail.com]
Sent: 15 March 2012 14:03
To: NT System Admin Issues
Subject: Re: New to virtualization

I admit it was a while back, it may have changed, or my understanding was 
incorrect.  Or someone told me that and I read it that way.  In any event, I 
think 12 total servers for his environment may be a bit low...  Or it may not 
be.  With Datacenter licensing, if he loses a host, he can move the guests to 
the other machines and do some back of the hand guestimate based on load 
balancing not licensing.



On Wed, Mar 14, 2012 at 10:51 PM, Ken Schaefer 
k...@adopenstatic.commailto:k...@adopenstatic.com wrote:
No this is incorrect. Check the Microsoft Windows Server licensing guide:
http://download.microsoft.com/download/0/D/9/0D9DDF52-A855-487B-9B74-5A09A9389551/Windows%20Server%20System%20Center%20and%20Forefront%20Pricing%20and%20Licensing%20Guide.pdf

You can move individual VOSE licenses between Enterprise Hosts, provided that 
no host ends up exceeding the 1 POSE + 4 VOSE limit per enterprise license. For 
more than 4 VOSEs on a physical host, you need 2 (or more) enterprise licenses.

Check out page 8 on the document above - has this exact example in a diagram.

Cheers
Ken

From: Jonathan Link 
[mailto:jonathan.l...@gmail.commailto:jonathan.l...@gmail.com]
Sent: Thursday, 15 March 2012 1:24 AM

To: NT System Admin Issues
Subject: Re: New to virtualization

It's even a more (unenforcebly) stringent than that.  If you run 4 VMs on 3 
hosts with enterprise server on each host, you power down two and do a switch, 
you're in a licensing violation situation.  Technically, you have to move all 3 
from one host to another.  So single licensing or Datacenter, or some oddball 
combination of single licenses and enterprise licenses (DAMHIKT).

Someone correct me if I'm wrong, but that's the way I read the license.  And I 
prefer to play it straight/conservative.  I'll look forward to your response in 
about 4-6 hours.
On Wed, Mar 14, 2012 at 11:00 AM, Miller Bonnie L. 
mille...@mukilteo.wednet.edumailto:mille...@mukilteo.wednet.edu wrote:
And I'm not familiar with the HP hardware, so it's very possible they can-I 
just didn't see anything about clustering in the original post.

Why it's important is one thing MS had told us is if you are planning on 
clustering, in an environment like this, you are out of compliance with 
licensing as soon as you migrate the 5th VM over to a server that is only 
running Enterprise edition (such as to down one of the 3 servers for patching). 
 That is of course, unless you own separate individual server licenses for 
those VMs.

From: Andrew S. Baker [mailto:asbz...@gmail.commailto:asbz...@gmail.com]
Sent: Tuesday, March 13, 2012 1:50 PM

To: NT System Admin Issues
Subject: Re: New to virtualization

I have VM hosts at home that can support 6-8 hosts easily.

At the office, we have hosts that can support 15-20 VMs pretty easily.  Of 
course, this depends on the workload of the boxes, but for all but the most 
extreme workloads, this is probably doable.

If you build each host to support 30-40% more VMs than normal, then you can 
suffer a failure of one of them without great difficulty.
ASB

http://XeeMe.com/AndrewBaker

Harnessing the Advantages of Technology for the SMB market...


On Tue, Mar 13, 2012 at 1:59 PM, Miller Bonnie L. 
mille...@mukilteo.wednet.edumailto:mille...@mukilteo.wednet.edu wrote:
I don't see any mention of failover clustering.  Right now, how much do you 
lose if one server is down?  How much would you lose if 4 servers were down 
instead?

Just a thought, but you could add another host server, or stick with three, run 
datacenter, and build them with enough

RE: Simple File Permissions Question

2012-03-27 Thread Damien Solodow
Is this a domain?
If so, the Domain Computers group is the one you want. Granting it Modify will 
do the trick, but you can be more granular if desired.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Jim Dandy [mailto:jda...@asmail.ucdavis.edu]
Sent: Tuesday, March 27, 2012 2:11 PM
To: NT System Admin Issues
Subject: Simple File Permissions Question

I have a logon script that creates a file in a shared folder.  The owner of 
that file is the computer that made it.  The way it's set up now, if another 
computer tries to overwrite that file, it can't.  I have to go in and manually 
delete the file to allow another computer to recreate it.  What permissions 
should I give the folder so that other computers can overwrite files created in 
that directory?  There is the Users group.  Is there a similar group that 
defines just computers?  Does the Users group include computers?

Thanks for your help.

Curt Finley

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: BB curve 9300 installation

2012-03-27 Thread Damien Solodow
Wha...? You don't need to install anything for it to charge. It's just a 
micro-usb cable

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Joseph L. Casale [mailto:jcas...@activenetwerx.com]
Sent: Tuesday, March 27, 2012 3:33 PM
To: NT System Admin Issues
Subject: BB curve 9300 installation

We don't use bb's here, but a salesman has asked me to install the driver so it 
can be charged on his laptop.
Is it just BlackBerry Device Manager I need for this guy?

Thanks,
jlc

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: New to virtualization

2012-03-13 Thread Damien Solodow
In a VMware environment VirtualCenter (or vCenter Server) is the management box 
for handling all your VMware servers and guests. This server *can* be a VM and 
is supported as such. Some people have nervous twitches about it, but it's 
perfectly workable.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: David Mazzaccaro [mailto:david.mazzacc...@hudsonmobility.com]
Sent: Tuesday, March 13, 2012 2:12 PM
To: NT System Admin Issues
Subject: RE: New to virtualization

Thanks,
Right now I have 3 DL360s (dual proc, 4GB, 32bit) for 75 Citrix users and they 
are taxed pretty hard.
I always get alerts for CPU and RAM, and if I physically check the boxes, they 
usually say 200M free of ram, w/ 6GB pagefile in use.

What do you mean by Virtualizing VirtualCenter?



From: James Rankin 
[mailto:kz2...@googlemail.com]mailto:[mailto:kz2...@googlemail.com]
Sent: Tuesday, March 13, 2012 11:48 AM
To: NT System Admin Issues
Subject: Re: New to virtualization

Nothing wrong with virtualizing your Citrix kit, but another thing you'll need 
to remember the latest Citrix XenApp version (soon to be the only supported 
one, by July 2013) is 64-bit only, so you'll need to do some heavy app testing 
to make sure everything will work OK. If it doesn't, you'll have to invest in 
some other way of getting at those apps (VDI, VM Hosted Apps, etc.) Obviously 
you won't get as many users on a virtual XenApp system as you do on a physical 
one (unless your physical ones are highly underpowered) - I've seen round about 
30-40 users per box being a ballpark figure dependent on the RAM and processing 
power you throw at the VMs.

The only thing you really maybe need to leave physical is a DNS server, maybe a 
DC if you want to be able to log in to the domain when everything else is down. 
Virtualizing VirtualCenter (if you go the VMWare route) isn't that much of an 
issue.
On 13 March 2012 15:04, David Mazzaccaro 
david.mazzacc...@hudsonmobility.commailto:david.mazzacc...@hudsonmobility.com
 wrote:

Hi all,

I am starting to investigate moving our aging network infrastructure into the 
virtual world.

~ 10 servers, 6-7 years old

Windows 2003 domain

Exchange 2003

Citrix 4.0 farm

~190 users

After some initial discussions w/ a reseller, here's what they are recommending:

(3) DL 380 G7 servers (to host the VMs) ~$18,000

(1) Net App FAS2240 (this is the SAN that would host 12 600GB drives of storage 
for the VMs) ~$20,000

VMWare essentials plus kit (VMware software) ~$5200

(3) MS Windows 2008 R2 Enterprise (this would allow the 3 HP servers to run 4 
Windows 2008 VMs each)

I guess the way it would work is that the VMs would reside on the SAN, and the 
3 hosts would call up the SAN to load each VM utilizing the host's CPU, RAM, 
NIC, etc.)... right?

I have meetings scheduled w/ 2 other vendors, but verbally both have started 
the conversation along the same path as above.

Being very new to VM, does the above scenario seem to make sense?

It is hard for me to imagine all that traffic going between the SAN and the 
host servers w/o creating a huge bottleneck (over gig Ethernet)

Do people recommend virtualizing every server?

Domain controllers? Exchange? Citrix farm (4 server)?

Shouldn't something be left physical?

Is 7 TB of storage enough (probably only 3 usable after array config)?

Is the net app a decent appliance? $20k sounds cheap to me...

I have done a little more reading, and from what I understand w/ 3 Windows 
Enterprise licenses, I would be limiting myself to 12 VMs.

However, if I went w/ 3 Windows Datacenter licenses, for a small increase in 
price - I would get unlimited VMs?

Which would allow for actually having a testing environment, and better patch 
deployment?

Thx

.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



--
On two occasions...I have been asked, 'Pray, Mr Babbage, if you put into the 
machine wrong figures, will the right answers come out?' I am not able rightly 
to apprehend the kind of confusion of ideas that could provoke such a question.

* IMPORTANT INFORMATION/DISCLAIMER *

This document should be read only by those persons to whom it is addressed. If 
you have received this message it was obviously addressed to you and therefore 
you can read it, even it we didn't mean to send it to you. However, if the 
contents of this email make no sense whatsoever then you probably were not the 
intended recipient, or, alternatively, you are a mindless cretin; either way, 
you should immediately kill yourself and destroy your computer (not necessarily 
in that order). Once you have taken this action, please contact us.. no, sorry, 
you

RE: Citrix published app launch issue

2012-02-28 Thread Damien Solodow
Users having the issue are both internal and external.
The farm settings for the web interface are correct; applications enumerate 
properly and apps published to other servers in the farm launch without issue.
We do have a services site, and it exhibits the same behavior with the apps on 
the problem servers.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: James Rankin [mailto:kz2...@googlemail.com]
Sent: Tuesday, February 28, 2012 4:18 PM
To: NT System Admin Issues
Subject: Re: Citrix published app launch issue

Are your users hitting the problem launching it from the Web Interface 
internally or externally? What are the farm settings for the Web Interface, are 
they correct? Can they launch the same app through the Services Site on the Web 
Interface (if you have one, you know, what used to be the PNAgent URL) and does 
it throw the same error?
On 28 February 2012 21:06, Damien Solodow 
damien.solo...@harrison.edumailto:damien.solo...@harrison.edu wrote:
Help me NTSYSADMIN, you're my only hope! ;)

This has me pulling my hair out and I wanted to see if I can get a fresh view.

Citrix Web Interface 5.4 with Secure Gateway 3.2 on Windows 2008 R2 SP1.
Our Citrix farm is currently a mix of Windows 2003/PS 4.5, Windows 2008/XA5, 
and Windows 2008 x64/XA5. The majority of the servers are on XA5 (only 4 of the 
2003 ones left).

There is an application (of course something important) that is published on 
XenApp5Srv1-XenApp5Srv6. When any user attempts to launch that application via 
the web interface, it sits through the timeout period for hitting the service 
brokers and then throws the error error connecting to resource. The 
application can be run without issue via a legacy ICA file that points to the 
application.

The servers XenApp5Srv1-6 only host this problematic app; no others. If I 
create a new test app (like Notepad) and publish it to those servers the same 
behavior occurs. If I then take that test application and point it instead to 
TestXenApp1, it launches and runs without issue.

All of these servers have the XML service running on port 80, and IIS is not 
installed.



DAMIEN SOLODOW
Systems Engineer
317.447.6033tel:317.447.6033 (office)
317.447.6014tel:317.447.6014 (fax)
HARRISON COLLEGE
500 North Meridian St
Suite 500
Indianapolis, IN 46204-1213
www.harrison.eduhttp://www.harrison.edu/


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



--
On two occasions...I have been asked, 'Pray, Mr Babbage, if you put into the 
machine wrong figures, will the right answers come out?' I am not able rightly 
to apprehend the kind of confusion of ideas that could provoke such a question.

* IMPORTANT INFORMATION/DISCLAIMER *

This document should be read only by those persons to whom it is addressed. If 
you have received this message it was obviously addressed to you and therefore 
you can read it, even it we didn't mean to send it to you. However, if the 
contents of this email make no sense whatsoever then you probably were not the 
intended recipient, or, alternatively, you are a mindless cretin; either way, 
you should immediately kill yourself and destroy your computer (not necessarily 
in that order). Once you have taken this action, please contact us.. no, sorry, 
you can't use your computer, because you just destroyed it, and possibly also 
committed suicide afterwards, but I am starting to digress..

The originator of this email is not liable for the transmission of the 
information contained in this communication. Or are they? Either way it's a 
pretty dull legal query and frankly one I'm not going to dwell on. But should 
you have nothing better to do, please feel free to ruminate on it, and please 
pass on any concrete conclusions should you find them. However, if you pass 
them on via email, be sure to include a disclaimer regarding liability for 
transmission.

In the event that the originator did not send this email to you, then please 
return it to us and attach a scanned-in picture of your mother's brother's wife 
wearing nothing but a kangaroo suit, and we will immediately refund you exactly 
half of what you paid for the can of Whiskas you bought when you went to Pets 
At Home yesterday.

We take no responsibility for non-receipt of this email because we are running 
Exchange 5.5 and everyone knows how glitchy that can be. In the event that you 
do get this message then please note that we take no responsibility for that 
either. Nor will we accept any liability, tacit or implied, for any damage you 
may or may not incur as a result of receiving, or not, as the case may be, from 
time to time, notwithstanding all

RE: Citrix published app launch issue

2012-02-28 Thread Damien Solodow
No apps launch on those servers from the web interface.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: James Rankin [mailto:kz2...@googlemail.com]
Sent: Tuesday, February 28, 2012 4:26 PM
To: NT System Admin Issues
Subject: Re: Citrix published app launch issue

So you can't launch any apps from these problem servers? Or you are only having 
the problems with one application on these servers?
On 28 February 2012 21:19, Damien Solodow 
damien.solo...@harrison.edumailto:damien.solo...@harrison.edu wrote:
Users having the issue are both internal and external.
The farm settings for the web interface are correct; applications enumerate 
properly and apps published to other servers in the farm launch without issue.
We do have a services site, and it exhibits the same behavior with the apps on 
the problem servers.

DAMIEN SOLODOW
Systems Engineer
317.447.6033tel:317.447.6033 (office)
317.447.6014tel:317.447.6014 (fax)
HARRISON COLLEGE

From: James Rankin [mailto:kz2...@googlemail.commailto:kz2...@googlemail.com]
Sent: Tuesday, February 28, 2012 4:18 PM
To: NT System Admin Issues
Subject: Re: Citrix published app launch issue

Are your users hitting the problem launching it from the Web Interface 
internally or externally? What are the farm settings for the Web Interface, are 
they correct? Can they launch the same app through the Services Site on the Web 
Interface (if you have one, you know, what used to be the PNAgent URL) and does 
it throw the same error?
On 28 February 2012 21:06, Damien Solodow 
damien.solo...@harrison.edumailto:damien.solo...@harrison.edu wrote:
Help me NTSYSADMIN, you're my only hope! ;)

This has me pulling my hair out and I wanted to see if I can get a fresh view.

Citrix Web Interface 5.4 with Secure Gateway 3.2 on Windows 2008 R2 SP1.
Our Citrix farm is currently a mix of Windows 2003/PS 4.5, Windows 2008/XA5, 
and Windows 2008 x64/XA5. The majority of the servers are on XA5 (only 4 of the 
2003 ones left).

There is an application (of course something important) that is published on 
XenApp5Srv1-XenApp5Srv6. When any user attempts to launch that application via 
the web interface, it sits through the timeout period for hitting the service 
brokers and then throws the error error connecting to resource. The 
application can be run without issue via a legacy ICA file that points to the 
application.

The servers XenApp5Srv1-6 only host this problematic app; no others. If I 
create a new test app (like Notepad) and publish it to those servers the same 
behavior occurs. If I then take that test application and point it instead to 
TestXenApp1, it launches and runs without issue.

All of these servers have the XML service running on port 80, and IIS is not 
installed.



DAMIEN SOLODOW
Systems Engineer
317.447.6033tel:317.447.6033 (office)
317.447.6014tel:317.447.6014 (fax)
HARRISON COLLEGE
500 North Meridian St
Suite 500
Indianapolis, IN 46204-1213
www.harrison.eduhttp://www.harrison.edu/


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



--
On two occasions...I have been asked, 'Pray, Mr Babbage, if you put into the 
machine wrong figures, will the right answers come out?' I am not able rightly 
to apprehend the kind of confusion of ideas that could provoke such a question.

* IMPORTANT INFORMATION/DISCLAIMER *

This document should be read only by those persons to whom it is addressed. If 
you have received this message it was obviously addressed to you and therefore 
you can read it, even it we didn't mean to send it to you. However, if the 
contents of this email make no sense whatsoever then you probably were not the 
intended recipient, or, alternatively, you are a mindless cretin; either way, 
you should immediately kill yourself and destroy your computer (not necessarily 
in that order). Once you have taken this action, please contact us.. no, sorry, 
you can't use your computer, because you just destroyed it, and possibly also 
committed suicide afterwards, but I am starting to digress..

The originator of this email is not liable for the transmission of the 
information contained in this communication. Or are they? Either way it's a 
pretty dull legal query and frankly one I'm not going to dwell on. But should 
you have nothing better to do, please feel free to ruminate on it, and please 
pass on any concrete conclusions should you find them. However, if you pass 
them on via email, be sure to include a disclaimer regarding liability for 
transmission.

In the event that the originator did not send this email to you, then please 
return it to us and attach a scanned-in picture of your mother's brother's

RE: Citrix published app launch issue

2012-02-28 Thread Damien Solodow
$Deity I feel dumb... A stop imaservice, dsmaint recreatelhc, start imaservice 
on the affected systems solved the problem.

What's weird is that the only thing I know of that happened to those servers 
since they were hunky dory is a restart of the spooler (and the cpsvc service) 
last night.
Ah well, that solves that then.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: James Rankin [mailto:kz2...@googlemail.com]
Sent: Tuesday, February 28, 2012 5:03 PM
To: NT System Admin Issues
Subject: Re: Citrix published app launch issue

Isn't that recreatelhc? I may be wrong, long time since I did it, but it's 
worth a try, worked for me before
On 28 February 2012 21:42, Tom Miller 
tmil...@hnncsb.orgmailto:tmil...@hnncsb.org wrote:
Aside from what James and Webster recommended, I had this issue a few weeks 
ago.  Turns out I had to do dsmaint rebuildlhc on all the XenApp servers, since 
for some reason they were not showing that they were supposed to publish 
certain apps, then reboot the web servers, all was good.   Also my I had an old 
server listed as an xml server under the web interface, and that was removed.



Tom



 Damien Solodow 
 damien.solo...@harrison.edumailto:damien.solo...@harrison.edu 2/28/2012 
 4:06 PM 
Help me NTSYSADMIN, you're my only hope! ;)

This has me pulling my hair out and I wanted to see if I can get a fresh view.

Citrix Web Interface 5.4 with Secure Gateway 3.2 on Windows 2008 R2 SP1.
Our Citrix farm is currently a mix of Windows 2003/PS 4.5, Windows 2008/XA5, 
and Windows 2008 x64/XA5. The majority of the servers are on XA5 (only 4 of the 
2003 ones left).

There is an application (of course something important) that is published on 
XenApp5Srv1-XenApp5Srv6. When any user attempts to launch that application via 
the web interface, it sits through the timeout period for hitting the service 
brokers and then throws the error error connecting to resource. The 
application can be run without issue via a legacy ICA file that points to the 
application.

The servers XenApp5Srv1-6 only host this problematic app; no others. If I 
create a new test app (like Notepad) and publish it to those servers the same 
behavior occurs. If I then take that test application and point it instead to 
TestXenApp1, it launches and runs without issue.

All of these servers have the XML service running on port 80, and IIS is not 
installed.



DAMIEN SOLODOW
Systems Engineer
317.447.6033tel:317.447.6033 (office)
317.447.6014tel:317.447.6014 (fax)
HARRISON COLLEGE
500 North Meridian St
Suite 500
Indianapolis, IN 46204-1213
www.harrison.eduhttp://www.harrison.edu/


~ Finally, powerful endpoint security that ISN'T a resource hog! ~

~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


Confidentiality Notice: This e-mail message, including attachments, is for the 
sole use of the intended recipient(s) and may contain confidential and 
privileged information. Any unauthorized review, use, disclosure, or 
distribution is prohibited. If you are not the intended recipient, please 
contact the sender by reply e-mail and destroy all copies of the original 
message.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



--
On two occasions...I have been asked, 'Pray, Mr Babbage, if you put into the 
machine wrong figures, will the right answers come out?' I am not able rightly 
to apprehend the kind of confusion of ideas that could provoke such a question.

* IMPORTANT INFORMATION/DISCLAIMER *

This document should be read only by those persons to whom it is addressed. If 
you have received this message it was obviously addressed to you and therefore 
you can read it, even it we didn't mean to send it to you. However, if the 
contents of this email make no sense whatsoever then you probably were not the 
intended recipient, or, alternatively, you are a mindless cretin; either way, 
you should immediately kill yourself and destroy your computer (not necessarily 
in that order). Once you have taken this action, please contact us.. no, sorry, 
you can't use your computer, because you just destroyed it, and possibly also 
committed suicide afterwards, but I am starting to digress..

The originator of this email is not liable for the transmission of the 
information contained in this communication. Or are they? Either way it's a 
pretty dull legal query and frankly one I'm not going to dwell on. But should 
you

RE: utility to output service status

2012-02-16 Thread Damien Solodow
This would be pretty easy to do in Powershell. :)

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Erik Goldoff [mailto:egold...@gmail.com]
Sent: Thursday, February 16, 2012 10:09 AM
To: NT System Admin Issues
Subject: utility to output service status

Looking to run a batch/command on a series of servers, with the goal of a 
simple text file listing the service name and status (running/paused/stopped) 
to be emailed to a monitoring mailbox via scheduled task.

PSService and SC seem a bit too verbose for this  simple output, wondering if 
anyone has a favorite utility that might fit this need.

Thanks in advance,

Erik

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

Re: Is the Office 2010 license key same for 32 bit 64 bit

2012-01-23 Thread Damien Solodow
Yeah, you're much better off pulling a huge log like that into Access rather 
than Excel. ;)
--
Sent using BlackBerry


- Original Message -
From: Ben Scott [mailto:mailvor...@gmail.com]
Sent: Monday, January 23, 2012 06:21 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: Re: Is the Office 2010 license key same for 32 bit  64 bit

On Mon, Jan 23, 2012 at 2:28 PM, Michael B. Smith mich...@smithcons.com wrote:
  I can honestly say that I never once in my life before now thought
 that 2 gigabytes would ever be a practical limit in the world of
 spreadsheets.  :-)

 Oh my - you'd be so wrong. :-P

  Apparently.  :)  Although someone else's example of millions of
lines of log file was revealing.  Me, I'd tend to view that as a
database problem, not a spreadsheet problem.  I generally see
spreadsheets as a math/formulas solution.  But (ab)using spreadsheets
instead of databases is a tradition at least as old as the
spreadsheet, so I should have seen that coming.

 That's kinda like saying 640 KB is enough for anybody ...

  My reaction was specifically to a spreadsheet that big, not the
plain data size.  There's lots of other cases where I would find that
much memory entirely justified.  Databases, for example.  ;-)

-- Ben

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: KB2585542 stops access to websites

2012-01-11 Thread Damien Solodow
Hmm.. This is listed as a known issue for KB2643584

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: David Mazzaccaro [mailto:david.mazzacc...@hudsonmobility.com]
Sent: Wednesday, January 11, 2012 2:54 PM
To: NT System Admin Issues
Subject: KB2585542 stops access to websites


Anyone else seeing this?

After installing 2585542 on Windows 7, (32 or 64) users can no longer access 
some https sites.

page cannot be displayed

.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

Re: bougt the book

2012-01-10 Thread Damien Solodow
What's the title?
--
Sent using BlackBerry


From: Webster [mailto:webs...@carlwebster.com]
Sent: Tuesday, January 10, 2012 12:13 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: Re: bougt the book

Brian's book is a very useful resource and reference tool.  (Broken record 
here)  I registered my book on oreilly.com, paid $4.99 and got the Kindle, 
epub, and PDF versions.  Copy those files to the appropriate devices and I have 
Brian's book with me all the time.



Carl Webster

Consultant and Citrix Technology Professional

http://www.CarlWebster.comhttp://www.carlwebster.com/

From: David Lum david@nwea.orgmailto:david@nwea.org
Reply-To: NT Issues 
ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com
Date: Tue, 10 Jan 2012 16:08:07 +
To: NT Issues 
ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com
Subject: bougt the book

Book bought. I expect big things Brian! ☺

Dave

From: David Lum [mailto:david@nwea.org]
Sent: Thursday, January 05, 2012 1:07 PM
To: NT System Admin Issues
Subject: RE: Concur for expense management

You mean…buy the book? Get out…

From: Free, Bob [mailto:r...@pge.com]mailto:[mailto:r...@pge.com]
Sent: Thursday, January 05, 2012 11:47 AM
To: NT System Admin Issues
Subject: RE: Concur for expense management

Without going in to all the gory details, Brian’s homegrown glue is reference 
is fairly spot on ☺

From: David Lum [mailto:david@nwea.org]mailto:[mailto:david@nwea.org]
Sent: Wednesday, January 04, 2012 2:00 PM
To: NT System Admin Issues
Subject: RE: Concur for expense management

Wait – Concur is telling us we need ADFS 2.0 to use SAML. How do you do it 
without ADFS?

From: Free, Bob [mailto:r...@pge.com]mailto:[mailto:r...@pge.com]
Sent: Wednesday, January 04, 2012 1:01 PM
To: NT System Admin Issues
Subject: RE: Concur for expense management

Ditto.

We went from our old internal hosted to external Concur last year using SAML 
for authN. No ADFS.

From: Christopher Bodnar 
[mailto:christopher_bod...@glic.com]mailto:[mailto:christopher_bod...@glic.com]
Sent: Wednesday, January 04, 2012 7:01 AM
To: NT System Admin Issues
Subject: Re: Concur for expense management

the 2003 to 2003 R2 is very simple. More like adding additional features, than 
a true OS upgrade. You should be fine. No issues.

We use Concur here, but do not have federation services configured.


Chris Bodnar, MCSE, MCITP
Technical Support III
Distributed Systems Service Delivery - Intel Services
Guardian Life Insurance Company of America
Email: christopher_bod...@glic.commailto:christopher_bod...@glic.com
Phone: 610-807-6459
Fax: 610-807-6003



From:David Lum david@nwea.orgmailto:david@nwea.org
To:NT System Admin Issues 
ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com
Date:01/04/2012 09:17 AM
Subject:Concur for expense management




Does anyone here use Concur for expense management? I need to configure 
Federation with them and they sent me a SAML document and it looks like I need 
to install ADFS…which requires 2003 R2 and we don’t have any 2003 R2 servers, 
ours are straight 2003. It’s not a big deal to stand up a 2003 R2 DC in a 2003 
domain is it? Is an in-place upgrade possible? I seem to think on the 2003 
versions, 2003 and 2003 R2 are very similar.
David Lum
Systems Engineer // NWEATM
Office 503.548.5229 // Cell (voice/text) 503.267.9764


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe 

RE: SQL Backup

2012-01-09 Thread Damien Solodow
Dollars for donuts SQL is compressing the backup. :) That can be done either as 
part of the job or as a server wide default.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

-Original Message-
From: jesse-r...@wi.rr.com [mailto:jesse-r...@wi.rr.com] 
Sent: Monday, January 09, 2012 4:44 PM
To: NT System Admin Issues
Subject: SQL Backup

I'm finding this odd.

I have a SQL 2008R2 Database set for Simple Recovery Model.  The database is 
showing 71GB in size according to the .mdb file.  of that, maybe only 3GB is 
free/unused space.

When running backups of that database from the SQL management studio, the 
backup file, upon completion, is only 23GB or so in size.  (the backups resides 
on a remote server and backup is done via UNC pathing)

I don't understand how that can be correct.  Seems like I'm missing a lot of 
data here in the backup file?

What can I check to verify this?  (please note my DB/SQL skill are not worth a 
darn... so dumb-down any responses requiring things to be checked in SQL, ha)



mail2web.com - What can On Demand Business Solutions do for you?
http://link.mail2web.com/Business/SharePoint



~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: Deciphering UserAccountControl using PowerShell

2011-12-28 Thread Damien Solodow
You might be over-engineering the solution. :) 
Try this to get a list of disabled users: Get-ADUser -Filter {enabled -eq 
$false}

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE


-Original Message-
From: Michael Leone [mailto:oozerd...@gmail.com] 
Sent: Wednesday, December 28, 2011 2:01 PM
To: NT System Admin Issues
Subject: Deciphering UserAccountControl using PowerShell

So I know that the AD attribute UserAccountControl is the sum of the values 
of 21 different values (i.e., so a value of 546 = 2+32+512, which is composed 
of the sum of the constants ACCOUNT_DISABLED, PASSWORD_NOT_REQUIRED, and 
NORMAL_ACCOUNT). But how do I break that down in Powershell? For example, I 
want to do certain actions if a normal user account is disabled. However, I 
can't just check for a value of 514 (2+512), since - like this example - the 
value may be different, even tho this is an account I want to process. So how 
do I go about testing for ACCOUNT_DISABLED within the total value of 
UserAccountControl?

(in my case, I am planning to examine user home folders, and anyone who is 
disabled, move them to a different holding folder. In our case, the user login 
is used as the name of the folder, so I just need to match the folder name with 
the sAMAccountName in AD)

Thanks

~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: IIS 4.0 and .docx MIME types

2011-12-22 Thread Damien Solodow
I think I see your problem... Windows 2000 should be IIS5. ;)

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Erik Goldoff [mailto:egold...@gmail.com]
Sent: Thursday, December 22, 2011 2:51 PM
To: NT System Admin Issues
Subject: Re: IIS 4.0 and .docx MIME types

Win 2000 and IIS 4 ??? ouch !

How could docx not be compatible with an end of life'd unsupported system ? 
sorry for sarcasm



On Thu, Dec 22, 2011 at 2:35 PM, Blasko, Margo 
margo.bla...@dcc-cdc.gc.camailto:margo.bla...@dcc-cdc.gc.ca wrote:
All,

Entered application/vnd.openxmlformats-officedocument.wordprocessingml.document 
as the .docx MIME type in ISS 4.0 on a Windows 2000 server.   The server was 
then rebooted.

Unfortuantely the docx documents still will not open.  The error is 'Word 
cannot open the file because the file format does not match the file extension'

Is this a compatibility issue?  Can I get .docx to work on IIS4.0? Or could 
there be something else?

Thanks in advance,

Margo
~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Memory Fragmentation

2011-12-09 Thread Damien Solodow
Since 2008 R2 is a 64bit OS, this is likely a non-issue.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Dave Vantine [mailto:dvant...@gmail.com]
Sent: Friday, December 09, 2011 2:27 PM
To: NT System Admin Issues
Subject: Memory Fragmentation

We are in the process of migrating a 3rd party application from Win 2003 to Win 
2008 R2.  The application that likes to have larger amounts of contiguos 
memory. In the past we had an issue with this and I was able to address by 
following KB http://support.microsoft.com/kb/315407. This added a Registry key 
HeapDecommitFreeBlockThreshold and set it to 262144. This was suppose to lessen 
or avoid virtual address fragmentation

I have tried to research this further with respect to Win 2008 R2 to see if 
this is no longer something that is pertinent or needs to be addressed within 
the registry as Microsoft may have changed how it deallocates memory.

Any recommendations on whether this is no longer necessary in 2008 or is it 
something that I should still be concerned with and add this registry setting.

Thanks
-Dave Vantine



--
Thanks
Dave Vantine

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: RAMDisk Prevalence?

2011-12-08 Thread Damien Solodow
I was going to do that, but we didn't have the budget for RAMdisk. I had to use 
/dev/null instead.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

-Original Message-
From: Ben Scott [mailto:mailvor...@gmail.com] 
Sent: Thursday, December 08, 2011 9:29 AM
To: NT System Admin Issues
Subject: Re: RAMDisk Prevalence?

On Wed, Dec 7, 2011 at 4:28 PM, Sam Cayze sca...@gmail.com wrote:
 Haven't heard of the notion of using RAMdisks in AGES.  Are people 
 still using them?

  I backup to a RAM disk.  It's much faster that way.

-- Ben

~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: RAMDisk Prevalence?

2011-12-08 Thread Damien Solodow
I think your sarcasm detector is broken. ;)

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE


-Original Message-
From: Crawford, Scott [mailto:crawfo...@evangel.edu] 
Sent: Thursday, December 08, 2011 10:37 AM
To: NT System Admin Issues
Subject: RE: RAMDisk Prevalence?

  I backup to a RAM disk.  It's much faster that way.

At best, that's only a temporary backup.  Useful if you're changing a file and 
need to revert to the previous version rather quickly. Otherwise, as soon as 
that machine goes down for any reason, your backup starts to fade rather 
quickly. Some of the compressed-air-ram-freezing techniques may be useful here, 
but unless you're nearby soon, you're out of luck.

-Original Message-
From: Ben Scott [mailto:mailvor...@gmail.com]
Sent: Thursday, December 08, 2011 8:29 AM
To: NT System Admin Issues
Subject: Re: RAMDisk Prevalence?

On Wed, Dec 7, 2011 at 4:28 PM, Sam Cayze sca...@gmail.com wrote:
 Haven't heard of the notion of using RAMdisks in AGES.  Are people 
 still using them?

  I backup to a RAM disk.  It's much faster that way.

-- Ben

~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: WMI filter help

2011-12-08 Thread Damien Solodow
Umm... Look at the bottom line:
AND (Destination Like '10.3..61.1' ) )

You have one too many periods between 3 and 61.


DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Jeff Brown [mailto:jbr...@webcoindustries.com]
Sent: Thursday, December 08, 2011 2:53 PM
To: NT System Admin Issues
Subject: WMI filter help

I am trying to create a WMI filter to apply a GPO to a specific IP address.  I 
have been googling and am so far not able to find anything dumbed down enough 
for me to copy/paste modify and get to work.  There is one existing WMI filter 
here that applies a range of subnets.  I have tried modifying that existing 
filter to point only to the server I am trying to apply the GPO to, it looks 
like this:

Select * FROM Win32_IP4RouteTable
WHERE ((Mask='255.255.255.255' AND NextHop='127.0.0.1' OR NextHop='0.0.0.0')
AND (Destination Like '10.3..61.1' ) )

Anyone care to offer suggestions or resources?  W2k8 R2 server environment.  I 
simply need to create a WMI filter for a GPO that applies to the server at 
internal address: 10.3.61.1.  may need to add others later, but for now the one 
will do.  Thank for any help.

Jeff Brown
IT Operations
Webco Industries
(918) 246-2455


This email and any attachments transmitted with it are confidential and 
intended solely for the use of the addressee. If you have received this email 
in error please notify the sender immediately. All inquiries, quotations, 
purchase orders, acknowledgments, invoices or other documents memorializing 
offers, acceptances or contractual obligations are subject to Webco's standard 
terms and conditions of sale (when Webco is the seller, 
www.webcoindustries.com/tcsales.aspxhttp://www.webcoindustries.com/tcsales.aspx)
 or purchase (when Webco is the buyer, 
www.webcoindustries.com/tcpurchase.aspxhttp://www.webcoindustries.com/tcpurchase.aspx).
 Webco manufactures tubular products to meet customer dimensional and materials 
specifications. Webco is not an engineering or design business. Any engineering 
information provided is purely incidental to the tube manufacturing process and 
not offered or intended to be engineering services related to the performance 
specifications a customer may require, which is the customer's responsibility 
to determine.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

Re: VMware version 1 or 2

2011-12-06 Thread Damien Solodow
VMware Server I assume? Neither is bare-metal but both would run on Linux. The 
VMs will run on newer products as well.
--
Sent using BlackBerry


From: Jon Harris [mailto:jk.har...@gmail.com]
Sent: Tuesday, December 06, 2011 09:36 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: VMware version 1 or 2

I got a call from a small firm tonight needing help with an old VMware 
installation.  It has been so long since I touched a VMware version 1 or 2 
installation I need a little memory jog.  Did either or these run on a Linux or 
bare metal install?  I know they both ran on top of Windows but there was no 
documentation from the original installation left (if ever there was any).  To 
make matters worse for the company their backups were on a Buffalo storage 
unit.  I have not yet been to the company to take a look at the system so that 
is all I have at the moment.

Thanks for any jogging anyone can offer.

Jon

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


RE: VMware version 1 or 2

2011-12-06 Thread Damien Solodow
I believe that GSX was the predecessor to VMware Server.

From: Sam Cayze [sca...@gmail.com]
Sent: Tuesday, December 06, 2011 11:17 PM
To: NT System Admin Issues
Subject: Re: VMware version 1 or 2


Are those the same as VMWare GSX Server? I those those ran ontop of Linux and 
Windows.

On Dec 6, 2011 9:59 PM, Jon Harris 
jk.har...@gmail.commailto:jk.har...@gmail.com wrote:
Thanks.

Jon

On Tue, Dec 6, 2011 at 9:40 PM, Damien Solodow 
damien.solo...@harrison.edumailto:damien.solo...@harrison.edu wrote:
VMware Server I assume? Neither is bare-metal but both would run on Linux. The 
VMs will run on newer products as well.
--
Sent using BlackBerry


From: Jon Harris [mailto:jk.har...@gmail.commailto:jk.har...@gmail.com]
Sent: Tuesday, December 06, 2011 09:36 PM
To: NT System Admin Issues 
ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com
Subject: VMware version 1 or 2

I got a call from a small firm tonight needing help with an old VMware 
installation.  It has been so long since I touched a VMware version 1 or 2 
installation I need a little memory jog.  Did either or these run on a Linux or 
bare metal install?  I know they both ran on top of Windows but there was no 
documentation from the original installation left (if ever there was any).  To 
make matters worse for the company their backups were on a Buffalo storage 
unit.  I have not yet been to the company to take a look at the system so that 
is all I have at the moment.

Thanks for any jogging anyone can offer.

Jon

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Backup Exec ver. 12.0

2011-11-30 Thread Damien Solodow
It should still be available via FileConnect using your Serial Number.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

-Original Message-
From: Eric Brouwer [mailto:ithelp.e...@gmail.com] 
Sent: Wednesday, November 30, 2011 12:00 PM
To: NT System Admin Issues
Subject: Backup Exec ver. 12.0

Geetings,

With my predecessor completely out of the picture now, I'm evaluating 
everything he was in charge of.  One of his duties was setting up backup 
routines, and testing them.  I am not able to find our installation media for 
Backup Exec 12.  I have the license keys, but no way to install it.  I sent an 
inquiry to Symantec to see if it was available for download, but I doubt it.  
Does any one on this list have a copy of this?  I need to be able to install 
the core product, and agents for Windows servers, Exchange, and SQL.

Thank you,

Eric

~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: Backup Exec ver. 12.0

2011-11-30 Thread Damien Solodow
It would be on your license form/email. Should start with M.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE


-Original Message-
From: Eric Brouwer [mailto:ithelp.e...@gmail.com] 
Sent: Wednesday, November 30, 2011 12:14 PM
To: NT System Admin Issues
Subject: Re: Backup Exec ver. 12.0

I tried that.  The serial number I have is in this format:
01-2345-6789-004265.  It says it's not valid.  I also looked at the 
besernum.xml file and the serial number listed there does not work either.

On Wed, Nov 30, 2011 at 12:03 PM, Harry Singh hbo...@gmail.com wrote:
 You should be able to download the product from the following website 
 using the serial number you currently have.

 https://fileconnect.symantec.com



 On Wed, Nov 30, 2011 at 12:00 PM, Eric Brouwer ithelp.e...@gmail.com
 wrote:

 Geetings,

 With my predecessor completely out of the picture now, I'm evaluating 
 everything he was in charge of.  One of his duties was setting up 
 backup routines, and testing them.  I am not able to find our 
 installation media for Backup Exec 12.  I have the license keys, but 
 no way to install it.  I sent an inquiry to Symantec to see if it was 
 available for download, but I doubt it.  Does any one on this list 
 have a copy of this?  I need to be able to install the core product, 
 and agents for Windows servers, Exchange, and SQL.

 Thank you,

 Eric

 ~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
 http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

 ---
 To manage subscriptions click here:
 http://lyris.sunbelt-software.com/read/my_forums/
 or send an email to listmana...@lyris.sunbeltsoftware.com
 with the body: unsubscribe ntsysadmin


 ~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
 http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

 ---
 To manage subscriptions click here:
 http://lyris.sunbelt-software.com/read/my_forums/
 or send an email to listmana...@lyris.sunbeltsoftware.com
 with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



Re: iPhone user can still send emails after being disabled in AD

2011-11-11 Thread Damien Solodow
You want a cmdlet extension agent.
--
Sent using BlackBerry


From: Kennedy, Jim [mailto:kennedy...@elyriaschools.org]
Sent: Friday, November 11, 2011 02:22 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: RE: iPhone user can still send emails after being disabled in AD

What did you change so that a new mailbox is turned off by default? I ask 
because 2010 is my next project and I would like to skin that cat.

From: Steven Peck [mailto:sep...@gmail.com]
Sent: Friday, November 11, 2011 2:19 PM
To: NT System Admin Issues
Subject: Re: iPhone user can still send emails after being disabled in AD

We just reviewed the basic settings during the deployment and made changes that 
were approrpriate fro our environment.  It wasn't that big a deal.
On Fri, Nov 11, 2011 at 10:59 AM, Mike Tavares 
miketava...@comcast.netmailto:miketava...@comcast.net wrote:
Its on by default in 2010 as well

From: Kennedy, Jimmailto:kennedy...@elyriaschools.org
Sent: Friday, November 11, 2011 1:52 PM
To: NT System Admin Issuesmailto:ntsysadmin@lyris.sunbelt-software.com
Subject: RE: iPhone user can still send emails after being disabled in AD

+1

Is it still turned on by default in 2010? If so that isn’t a bug anymore, that 
is negligence. Imnsho.


From: Kurt Buff [mailto:kurt.b...@gmail.commailto:kurt.b...@gmail.com]
Sent: Friday, November 11, 2011 1:48 PM
To: NT System Admin Issues
Subject: Re: iPhone user can still send emails after being disabled in AD



the bug is that it's turned on by default, and requires effort to turn it off.



~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


RE: iPhone user can still send emails after being disabled in AD

2011-11-11 Thread Damien Solodow
You can get a tuba and plate it..

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Micheal Espinola Jr [mailto:michealespin...@gmail.com]
Sent: Friday, November 11, 2011 2:41 PM
To: NT System Admin Issues
Subject: Re: iPhone user can still send emails after being disabled in AD

I want a toilet made out of solid gold.

--
Espi




On Fri, Nov 11, 2011 at 11:34 AM, Damien Solodow 
damien.solo...@harrison.edumailto:damien.solo...@harrison.edu wrote:
You want a cmdlet extension agent.
--
Sent using BlackBerry


From: Kennedy, Jim 
[mailto:kennedy...@elyriaschools.orgmailto:kennedy...@elyriaschools.org]
Sent: Friday, November 11, 2011 02:22 PM
To: NT System Admin Issues 
ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com
Subject: RE: iPhone user can still send emails after being disabled in AD

What did you change so that a new mailbox is turned off by default? I ask 
because 2010 is my next project and I would like to skin that cat.

From: Steven Peck [mailto:sep...@gmail.commailto:sep...@gmail.com]
Sent: Friday, November 11, 2011 2:19 PM
To: NT System Admin Issues
Subject: Re: iPhone user can still send emails after being disabled in AD

We just reviewed the basic settings during the deployment and made changes that 
were approrpriate fro our environment.  It wasn't that big a deal.
On Fri, Nov 11, 2011 at 10:59 AM, Mike Tavares 
miketava...@comcast.netmailto:miketava...@comcast.net wrote:
Its on by default in 2010 as well

From: Kennedy, Jimmailto:kennedy...@elyriaschools.org
Sent: Friday, November 11, 2011 1:52 PM
To: NT System Admin Issuesmailto:ntsysadmin@lyris.sunbelt-software.com
Subject: RE: iPhone user can still send emails after being disabled in AD

+1

Is it still turned on by default in 2010? If so that isn't a bug anymore, that 
is negligence. Imnsho.


From: Kurt Buff [mailto:kurt.b...@gmail.commailto:kurt.b...@gmail.com]
Sent: Friday, November 11, 2011 1:48 PM
To: NT System Admin Issues
Subject: Re: iPhone user can still send emails after being disabled in AD



the bug is that it's turned on by default, and requires effort to turn it off.



~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

Re: Happy Friday

2011-11-04 Thread Damien Solodow
Because it has it's own annoyances; some of which make it a less than prime 
choice for certain users/environments?
--
Sent using BlackBerry


- Original Message -
From: Tigran K [mailto:tigr...@gmail.com]
Sent: Friday, November 04, 2011 12:59 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: Re: Happy Friday

I just assumed everybody is using Chrome. I mean why wouldn't they?


On Fri, Nov 4, 2011 at 9:50 AM, Michael B. Smith mich...@smithcons.com wrote:
 If you want the funny - use Chrome.

 Regards,

 Michael B. Smith
 Consultant and Exchange MVP
 http://TheEssentialExchange.com


 -Original Message-
 From: Tigran K [mailto:tigr...@gmail.com]
 Sent: Friday, November 04, 2011 12:34 PM
 To: NT System Admin Issues
 Subject: Happy Friday

 https://www.google.com/?q=Z+or+R+twice

 --T

 ~ Finally, powerful endpoint security that ISN'T a resource hog! ~
 ~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

 ---
 To manage subscriptions click here: 
 http://lyris.sunbelt-software.com/read/my_forums/
 or send an email to listmana...@lyris.sunbeltsoftware.com
 with the body: unsubscribe ntsysadmin

 ~ Finally, powerful endpoint security that ISN'T a resource hog! ~
 ~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

 ---
 To manage subscriptions click here: 
 http://lyris.sunbelt-software.com/read/my_forums/
 or send an email to listmana...@lyris.sunbeltsoftware.com
 with the body: unsubscribe ntsysadmin



~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: From the Mac Enterprise list

2011-11-01 Thread Damien Solodow
Actually I think we're talking Enterprise C. You're sure there had to be one, 
but no-one can tell you much about it.

From: Steven Peck [sep...@gmail.com]
Sent: Tuesday, November 01, 2011 6:35 PM
To: NT System Admin Issues
Subject: Re: From the Mac Enterprise list

So, we're talking Enterprise A not Enterprise E

On Tue, Nov 1, 2011 at 3:25 PM, John Cook 
john.c...@pfsf.orgmailto:john.c...@pfsf.org wrote:
It's a small list
John W. Cook
Systems Administrator
Partnership for Strong Families

From: James Hill 
[mailto:james.h...@coffeeclub.com.aumailto:james.h...@coffeeclub.com.au]
Sent: Tuesday, November 01, 2011 06:17 PM
To: NT System Admin Issues 
ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com
Subject: RE: From the Mac Enterprise list

There’s a Mac Enterprise list?

What’s it called.  li...@oxymoron.commailto:li...@oxymoron.com?

From: David Lum [mailto:david@nwea.orgmailto:david@nwea.org]
Sent: Saturday, 29 October 2011 7:03 AM
To: NT System Admin Issues
Subject: From the Mac Enterprise list

Well, at least that’s how I know of it..
http://tech.fortune.cnn.com/2011/10/27/hell-freezes-over-forrester-urges-it-to-support-the-mac/
David Lum
Systems Engineer // NWEATM
Office 503.548.5229tel:503.548.5229 // Cell (voice/text) 
503.267.9764tel:503.267.9764


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


CONFIDENTIALITY STATEMENT: The information transmitted, or contained or 
attached to or with this Notice is intended only for the person or entity to 
which it is addressed and may contain Protected Health Information (PHI), 
confidential and/or privileged material. Any review, transmission, 
dissemination, or other use of, and taking any action in reliance upon this 
information by persons or entities other than the intended recipient without 
the express written consent of the sender are prohibited. This information may 
be protected by the Health Insurance Portability and Accountability Act of 1996 
(HIPAA), and other Federal and Florida laws. Improper or unauthorized use or 
disclosure of this information could result in civil and/or criminal penalties.
Consider the environment. Please don't print this e-mail unless you really need 
to.

This email and any attached files are confidential and intended solely for the 
intended recipient(s). If you are not the named recipient you should not read, 
distribute, copy or alter this email. Any views or opinions expressed in this 
email are those of the author and do not represent those of the company. 
Warning: Although precautions have been taken to make sure no viruses are 
present in this email, the company cannot accept responsibility for any loss or 
damage that arise from the use of this email or attachments.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Possibly a brilliant mistake...

2011-10-26 Thread Damien Solodow
Make your vCenter box a VM. :) It's supported, and they seem to be moving that 
direction given that they have released a vCenter appliance.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

-Original Message-
From: Kurt Buff [mailto:kurt.b...@gmail.com] 
Sent: Wednesday, October 26, 2011 12:25 PM
To: NT System Admin Issues
Subject: Re: Possibly a brilliant mistake...

I've got a license for ESXi 4.x Essentials Plus, so I've got the software to do 
this with failover and vmotion and such, but the company has not yet sprung for 
the hardware to set up vCenter. It's a bit frustrating...

Kurt

On Wed, Oct 26, 2011 at 07:22, Christopher Bodnar christopher_bod...@glic.com 
wrote:
 Sounds like a well thought out plan. Not sure if anyone brought this 
 up, but you may want to start considering fail over clustering for the 
 file server down the road. It will eventually remove the reliance on a real 
 server name.
 then you can just swap servers in and out of the cluster, and its' 
 totally invisible to the user.

 YMMV


 Chris Bodnar, MCSE, MCITP
 Technical Support III
 Distributed Systems Service Delivery - Intel Services Guardian Life 
 Insurance Company of America
 Email: christopher_bod...@glic.com
 Phone: 610-807-6459
 Fax: 610-807-6003



 From:        Kurt Buff kurt.b...@gmail.com
 To:        NT System Admin Issues 
 ntsysadmin@lyris.sunbelt-software.com
 Date:        10/25/2011 07:09 PM
 Subject:        Possibly a brilliant mistake...
 


 A scenario for y'all to consider...

 I've got a file server (Win2003 R2) running as a VM. It's using the MS 
 iSCSI connector to connect with the 4 data partitions it's running.

 My cunning plan to upgrade is to:


 o- Bring up a Win2008 R2 VM
 o- Configure all of the print queues on it to match the old server
 o- Gin up a batch file that will recreate the shares on new machine to 
 match the shares on the old machine
 o- Down the the original 2003 R2 server and delete the account from AD
 o- Change the name of the new 2008 R2 server to match the old server
 o- Connect the LUNs on the iSCSI devices to the new machine and give 
 them the same drive letters
 o- Run the batch file on the new machine to create the shares
 o- Go home and drink a few glasses of the nice wine I have stashed for 
 just such an occasion

 I'm sure someone out there has done something like this and can tell 
 me if it's a viable upgrade method.

 Anyone care to comment?

 Kurt

 ~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
 http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

 ---
 To manage subscriptions click here:
 http://lyris.sunbelt-software.com/read/my_forums/
 or send an email to listmana...@lyris.sunbeltsoftware.com
 with the body: unsubscribe ntsysadmin

 ~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
 http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

 ---
 To manage subscriptions click here:
 http://lyris.sunbelt-software.com/read/my_forums/
 or send an email to listmana...@lyris.sunbeltsoftware.com
 with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Possibly a brilliant mistake...

2011-10-26 Thread Damien Solodow
And it doesn't support using MSSQL as your database. It's pretty limited for 
now...

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE


-Original Message-
From: John Cook [mailto:john.c...@pfsf.org] 
Sent: Wednesday, October 26, 2011 12:40 PM
To: NT System Admin Issues
Subject: Re: Possibly a brilliant mistake...

Caveat of the appliance, it's not a windows machine so no Powershell Mgmt.
John W. Cook
Systems Administrator
Partnership for Strong Families

- Original Message -
From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Sent: Wednesday, October 26, 2011 12:31 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: RE: Possibly a brilliant mistake...

Make your vCenter box a VM. :) It's supported, and they seem to be moving that 
direction given that they have released a vCenter appliance.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

-Original Message-
From: Kurt Buff [mailto:kurt.b...@gmail.com]
Sent: Wednesday, October 26, 2011 12:25 PM
To: NT System Admin Issues
Subject: Re: Possibly a brilliant mistake...

I've got a license for ESXi 4.x Essentials Plus, so I've got the software to do 
this with failover and vmotion and such, but the company has not yet sprung for 
the hardware to set up vCenter. It's a bit frustrating...

Kurt

On Wed, Oct 26, 2011 at 07:22, Christopher Bodnar christopher_bod...@glic.com 
wrote:
 Sounds like a well thought out plan. Not sure if anyone brought this 
 up, but you may want to start considering fail over clustering for the 
 file server down the road. It will eventually remove the reliance on a real 
 server name.
 then you can just swap servers in and out of the cluster, and its'
 totally invisible to the user.

 YMMV


 Chris Bodnar, MCSE, MCITP
 Technical Support III
 Distributed Systems Service Delivery - Intel Services Guardian Life 
 Insurance Company of America
 Email: christopher_bod...@glic.com
 Phone: 610-807-6459
 Fax: 610-807-6003



 From:Kurt Buff kurt.b...@gmail.com
 To:NT System Admin Issues
 ntsysadmin@lyris.sunbelt-software.com
 Date:10/25/2011 07:09 PM
 Subject:Possibly a brilliant mistake...
 


 A scenario for y'all to consider...

 I've got a file server (Win2003 R2) running as a VM. It's using the MS 
 iSCSI connector to connect with the 4 data partitions it's running.

 My cunning plan to upgrade is to:


 o- Bring up a Win2008 R2 VM
 o- Configure all of the print queues on it to match the old server
 o- Gin up a batch file that will recreate the shares on new machine to 
 match the shares on the old machine
 o- Down the the original 2003 R2 server and delete the account from AD
 o- Change the name of the new 2008 R2 server to match the old server
 o- Connect the LUNs on the iSCSI devices to the new machine and give 
 them the same drive letters
 o- Run the batch file on the new machine to create the shares
 o- Go home and drink a few glasses of the nice wine I have stashed for 
 just such an occasion

 I'm sure someone out there has done something like this and can tell 
 me if it's a viable upgrade method.

 Anyone care to comment?

 Kurt

 ~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
 http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

 ---
 To manage subscriptions click here:
 http://lyris.sunbelt-software.com/read/my_forums/
 or send an email to listmana...@lyris.sunbeltsoftware.com
 with the body: unsubscribe ntsysadmin

 ~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
 http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

 ---
 To manage subscriptions click here:
 http://lyris.sunbelt-software.com/read/my_forums/
 or send an email to listmana...@lyris.sunbeltsoftware.com
 with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

CONFIDENTIALITY STATEMENT: The information transmitted, or contained or 
attached to or with this Notice is intended only for the person or entity to 
which it is addressed and may contain Protected Health Information (PHI), 
confidential and/or privileged material. Any review, transmission, 
dissemination, or other use of, and taking any action in reliance upon this 
information by persons or entities other than the intended recipient

RE: WMI filter for GPO's for WIndows 2003 Servers,

2011-10-25 Thread Damien Solodow
Kind of like the Builtin Domain Controllers group. ;)

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Andrew S. Baker [mailto:asbz...@gmail.com]
Sent: Tuesday, October 25, 2011 10:49 AM
To: NT System Admin Issues
Subject: Re: WMI filter for GPO's for WIndows 2003 Servers,

I prefer this method for inclusions and exclusions, although it is less 
automatic.

ASB

http://XeeMe.com/AndrewBaker

Harnessing the Advantages of Technology for the SMB market...



On Tue, Oct 25, 2011 at 9:08 AM, Kennedy, Jim 
kennedy...@elyriaschools.orgmailto:kennedy...@elyriaschools.org wrote:
Another option to exclude the DC's is to add them to a security group and deny 
read on the GPO.

From: Ziots, Edward [mailto:ezi...@lifespan.orgmailto:ezi...@lifespan.org]
Sent: Tuesday, October 25, 2011 9:06 AM

To: NT System Admin Issues
Subject: RE: WMI filter for GPO's for WIndows 2003 Servers,

I was meaning to exclude DC's since all my DC's are Windows 2008 R2 SP1.  This 
was more targeted for Windows 2003 Member servers, since they and I just 
learned Windows 2008 servers will not obey the advance audit settings that are 
reserved for Windows 2008 R2 and Windows 7. So I had to create different Audit 
Policy GPO's and filter them accordingly.

Do appreciate the advice on the WMI filter as always.

Z

Edward E. Ziots
CISSP, Network +, Security +
Security Engineer
Lifespan Organization
Email:ezi...@lifespan.orgmailto:email%3aezi...@lifespan.org
Cell:401-639-3505tel:401-639-3505
[CISSP_logo]

From: Michael B. Smith 
[mailto:mich...@smithcons.com]mailto:[mailto:mich...@smithcons.com]
Sent: Monday, October 24, 2011 4:09 PM
To: NT System Admin Issues
Subject: RE: WMI filter for GPO's for WIndows 2003 Servers,

I would do it this way:

select * from Win32_OperatingSystem where version like '5.%' 
and name like '%server%'

Your query excludes domain controllers. Dunno whether that's what you intended 
or not. The WMI class is documented here:


http://msdn.microsoft.com/en-us/library/windows/desktop/aa394239(v=vs.85).aspx

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Ziots, Edward 
[mailto:ezi...@lifespan.org]mailto:[mailto:ezi...@lifespan.org]
Sent: Monday, October 24, 2011 3:52 PM
To: NT System Admin Issues
Subject: WMI filter for GPO's for WIndows 2003 Servers,

Just a quick question, for those filtering with WMI filters. I am using the 
following for a Windows 2003 Filter, does anyone else have anything else that 
works a bit better or know that its valid.

select * from Win32_OperatingSystem where Version like 5.% and ProductType = 
3

TIA
EZ
Edward E. Ziots
CISSP, Network +, Security +
Security Engineer
Lifespan Organization
Email:ezi...@lifespan.orgmailto:email%3aezi...@lifespan.org
Cell:401-639-3505tel:401-639-3505
[CISSP_logo]


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body

RE: Help with PS script?

2011-10-17 Thread Damien Solodow
Hmmm... I added | Export-CSV -path file.csv to it and it ran successfully.
However, the resulting CSV looks like this:
ClassId2e4f51ef21dd47e99d3c952918aff9cd

pageHeaderEntry

pageFooterEntry

autosizeInfo

shapeInfo

groupingEntry

033ecb2bc07a4d43b5ef94ed5a35d280

Microsoft.PowerShell.Commands.Internal.Format.TableHeaderInfo

9e210fe47d09416682b841769c78b8a3

27c87ef9bbda4f709f6b4002fa4af63c

4ec4f0187cb04f4cb6973460dfe252df

cf522b78d86c486691226b40aa69e95c




DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Monday, October 17, 2011 3:32 PM
To: NT System Admin Issues
Subject: RE: Help with PS script?

Don't overthink it.

$adminAccount = Get-Credential
$ServerName = string
Get-WmiObject -class Win32_ComputerSystem -ComputerName $ServerName -Credential 
$adminAccount |
Format-Table `
@{l='ComputerName';e={$_.__Server.ToString()}},`
@{l='Manufacturer';e={$_.Manufacturer.ToString()}},`
@{l='Model';e={$_.Model.ToString()}},`
@{l='Operating System';e={(Get-WmiObject -class Win32_OperatingSystem 
-ComputerName $ServerName -Credential $adminAccount | Select-Object -expand 
Caption).ToString()}} -AutoSize

You should be able to pipe that to export-csv (perhaps minus the autosize - I 
didn't test it).

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Monday, October 17, 2011 1:44 PM
To: NT System Admin Issues
Subject: Help with PS script?

I'm trying to make a Powershell script to get a list of computer objects from 
AD, and query some AD properties from them and export to a CSV.
The part I have working does the queries and exports the data I want to a 
table. The export-csv is giving me grief, and I think it's because I need to 
convert the data to strings to export them out.

I think after the get-adcomputer I need to do a foreach-object to run the 
script block for each, but I'm having a brain fart.

Here's the part I have for the WMI info I need:

$adminAccount = Get-Credential
$ServerName = string
Get-WmiObject -class Win32_ComputerSystem -ComputerName $ServerName -Credential 
$adminAccount |
Format-Table `
@{l='ComputerName';e={$_.__Server}},`
@{l='Manufacturer';e={$_.Manufacturer}},`
@{l='Model';e={$_.Model}},`
@{l='Operating System';e={Get-WmiObject -class Win32_OperatingSystem 
-ComputerName $ServerName -Credential $adminAccount | Select-Object -expand 
Caption}} -AutoSize

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE
500 North Meridian St
Suite 500
Indianapolis, IN 46204-1213
www.harrison.eduhttp://www.harrison.edu/


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Help with PS script?

2011-10-17 Thread Damien Solodow
Doh!
Thanks much. I didn't know about the .tostring() trick.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Monday, October 17, 2011 3:49 PM
To: NT System Admin Issues
Subject: RE: Help with PS script?

Change the format-table to select-object.

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Monday, October 17, 2011 3:39 PM
To: NT System Admin Issues
Subject: RE: Help with PS script?

Hmmm... I added | Export-CSV -path file.csv to it and it ran successfully.
However, the resulting CSV looks like this:
ClassId2e4f51ef21dd47e99d3c952918aff9cd

pageHeaderEntry

pageFooterEntry

autosizeInfo

shapeInfo

groupingEntry

033ecb2bc07a4d43b5ef94ed5a35d280

Microsoft.PowerShell.Commands.Internal.Format.TableHeaderInfo

9e210fe47d09416682b841769c78b8a3

27c87ef9bbda4f709f6b4002fa4af63c

4ec4f0187cb04f4cb6973460dfe252df

cf522b78d86c486691226b40aa69e95c




DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Michael B. Smith 
[mailto:mich...@smithcons.com]mailto:[mailto:mich...@smithcons.com]
Sent: Monday, October 17, 2011 3:32 PM
To: NT System Admin Issues
Subject: RE: Help with PS script?

Don't overthink it.

$adminAccount = Get-Credential
$ServerName = string
Get-WmiObject -class Win32_ComputerSystem -ComputerName $ServerName -Credential 
$adminAccount |
Format-Table `
@{l='ComputerName';e={$_.__Server.ToString()}},`
@{l='Manufacturer';e={$_.Manufacturer.ToString()}},`
@{l='Model';e={$_.Model.ToString()}},`
@{l='Operating System';e={(Get-WmiObject -class Win32_OperatingSystem 
-ComputerName $ServerName -Credential $adminAccount | Select-Object -expand 
Caption).ToString()}} -AutoSize

You should be able to pipe that to export-csv (perhaps minus the autosize - I 
didn't test it).

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Monday, October 17, 2011 1:44 PM
To: NT System Admin Issues
Subject: Help with PS script?

I'm trying to make a Powershell script to get a list of computer objects from 
AD, and query some AD properties from them and export to a CSV.
The part I have working does the queries and exports the data I want to a 
table. The export-csv is giving me grief, and I think it's because I need to 
convert the data to strings to export them out.

I think after the get-adcomputer I need to do a foreach-object to run the 
script block for each, but I'm having a brain fart.

Here's the part I have for the WMI info I need:

$adminAccount = Get-Credential
$ServerName = string
Get-WmiObject -class Win32_ComputerSystem -ComputerName $ServerName -Credential 
$adminAccount |
Format-Table `
@{l='ComputerName';e={$_.__Server}},`
@{l='Manufacturer';e={$_.Manufacturer}},`
@{l='Model';e={$_.Model}},`
@{l='Operating System';e={Get-WmiObject -class Win32_OperatingSystem 
-ComputerName $ServerName -Credential $adminAccount | Select-Object -expand 
Caption}} -AutoSize

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE
500 North Meridian St
Suite 500
Indianapolis, IN 46204-1213
www.harrison.eduhttp://www.harrison.edu/


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com

RE: Help with PS script?

2011-10-17 Thread Damien Solodow
Ok, one more weird thing. I've got it getting a list of computers via 
get-adcomputer to run against, and most of the computers it's fine one. But a 
number of them return an access denied during the foreach-object.

However, if I modify the filter to run against some of the machines reporting 
access denied, they return fine.

Here is the current script:
Import-Module ActiveDirectory
$adminaccount = Get-Credential
Get-ADComputer -Filter {OperatingSystem -Like Windows *Server*} -SearchBase 
DC=domain,DC=local |
ForEach-Object -process {
Get-WmiObject -class Win32_ComputerSystem -ComputerName $_.Name -Credential 
$adminAccount |
Select-Object `
@{l='ComputerName';e={$_.__Server.ToString()}},`
@{l='Manufacturer';e={$_.Manufacturer.ToString()}},`
@{l='Model';e={$_.Model.ToString()}},`
@{l='Operating System';e={(Get-WmiObject -class Win32_OperatingSystem 
-ComputerName $_.Name -Credential $adminAccount | Select-Object -expand 
Caption).ToString()}}} |
Export-Csv -Path c:\users\public\documents\ServerInfo.csv -NoTypeInformation

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Sent: Monday, October 17, 2011 3:53 PM
To: NT System Admin Issues
Subject: RE: Help with PS script?

Doh!
Thanks much. I didn't know about the .tostring() trick.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Michael B. Smith 
[mailto:mich...@smithcons.com]mailto:[mailto:mich...@smithcons.com]
Sent: Monday, October 17, 2011 3:49 PM
To: NT System Admin Issues
Subject: RE: Help with PS script?

Change the format-table to select-object.

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Monday, October 17, 2011 3:39 PM
To: NT System Admin Issues
Subject: RE: Help with PS script?

Hmmm... I added | Export-CSV -path file.csv to it and it ran successfully.
However, the resulting CSV looks like this:
ClassId2e4f51ef21dd47e99d3c952918aff9cd

pageHeaderEntry

pageFooterEntry

autosizeInfo

shapeInfo

groupingEntry

033ecb2bc07a4d43b5ef94ed5a35d280

Microsoft.PowerShell.Commands.Internal.Format.TableHeaderInfo

9e210fe47d09416682b841769c78b8a3

27c87ef9bbda4f709f6b4002fa4af63c

4ec4f0187cb04f4cb6973460dfe252df

cf522b78d86c486691226b40aa69e95c




DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Michael B. Smith 
[mailto:mich...@smithcons.com]mailto:[mailto:mich...@smithcons.com]
Sent: Monday, October 17, 2011 3:32 PM
To: NT System Admin Issues
Subject: RE: Help with PS script?

Don't overthink it.

$adminAccount = Get-Credential
$ServerName = string
Get-WmiObject -class Win32_ComputerSystem -ComputerName $ServerName -Credential 
$adminAccount |
Format-Table `
@{l='ComputerName';e={$_.__Server.ToString()}},`
@{l='Manufacturer';e={$_.Manufacturer.ToString()}},`
@{l='Model';e={$_.Model.ToString()}},`
@{l='Operating System';e={(Get-WmiObject -class Win32_OperatingSystem 
-ComputerName $ServerName -Credential $adminAccount | Select-Object -expand 
Caption).ToString()}} -AutoSize

You should be able to pipe that to export-csv (perhaps minus the autosize - I 
didn't test it).

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Monday, October 17, 2011 1:44 PM
To: NT System Admin Issues
Subject: Help with PS script?

I'm trying to make a Powershell script to get a list of computer objects from 
AD, and query some AD properties from them and export to a CSV.
The part I have working does the queries and exports the data I want to a 
table. The export-csv is giving me grief, and I think it's because I need to 
convert the data to strings to export them out.

I think after the get-adcomputer I need to do a foreach-object to run the 
script block for each, but I'm having a brain fart.

Here's the part I have for the WMI info I need:

$adminAccount = Get-Credential
$ServerName = string
Get-WmiObject -class Win32_ComputerSystem -ComputerName $ServerName -Credential 
$adminAccount |
Format-Table `
@{l='ComputerName';e={$_.__Server}},`
@{l='Manufacturer';e={$_.Manufacturer}},`
@{l='Model';e={$_.Model}},`
@{l='Operating System';e={Get-WmiObject -class Win32_OperatingSystem 
-ComputerName $ServerName -Credential $adminAccount | Select-Object -expand 
Caption}} -AutoSize

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE
500 North Meridian St
Suite 500
Indianapolis, IN 46204-1213
www.harrison.eduhttp://www.harrison.edu/


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums

RE: Help with PS script?

2011-10-17 Thread Damien Solodow
I'm an idjit.
The problem is that the machines in question don't have DCOM enabled. No DCOM, 
no remote WMI.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Monday, October 17, 2011 5:07 PM
To: NT System Admin Issues
Subject: RE: Help with PS script?

Is it consistently the same computers? If so, you need to look at the 
permissions on the objects...

Sent from my HTC Tilt(tm) 2, a Windows(r) phone from ATT

From: Damien Solodow damien.solo...@harrison.edu
Sent: Monday, October 17, 2011 4:36 PM
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Subject: RE: Help with PS script?
Ok, one more weird thing. I've got it getting a list of computers via 
get-adcomputer to run against, and most of the computers it's fine one. But a 
number of them return an access denied during the foreach-object.

However, if I modify the filter to run against some of the machines reporting 
access denied, they return fine.

Here is the current script:
Import-Module ActiveDirectory
$adminaccount = Get-Credential
Get-ADComputer -Filter {OperatingSystem -Like Windows *Server*} -SearchBase 
DC=domain,DC=local |
ForEach-Object -process {
Get-WmiObject -class Win32_ComputerSystem -ComputerName $_.Name -Credential 
$adminAccount |
Select-Object `
@{l='ComputerName';e={$_.__Server.ToString()}},`
@{l='Manufacturer';e={$_.Manufacturer.ToString()}},`
@{l='Model';e={$_.Model.ToString()}},`
@{l='Operating System';e={(Get-WmiObject -class Win32_OperatingSystem 
-ComputerName $_.Name -Credential $adminAccount | Select-Object -expand 
Caption).ToString()}}} |
Export-Csv -Path c:\users\public\documents\ServerInfo.csv -NoTypeInformation

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Damien Solodow [mailto:damien.solo...@harrison.edu]
Sent: Monday, October 17, 2011 3:53 PM
To: NT System Admin Issues
Subject: RE: Help with PS script?

Doh!
Thanks much. I didn't know about the .tostring() trick.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Michael B. Smith 
[mailto:mich...@smithcons.com]mailto:[mailto:mich...@smithcons.com]
Sent: Monday, October 17, 2011 3:49 PM
To: NT System Admin Issues
Subject: RE: Help with PS script?

Change the format-table to select-object.

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Monday, October 17, 2011 3:39 PM
To: NT System Admin Issues
Subject: RE: Help with PS script?

Hmmm... I added | Export-CSV -path file.csv to it and it ran successfully.
However, the resulting CSV looks like this:
ClassId2e4f51ef21dd47e99d3c952918aff9cd

pageHeaderEntry

pageFooterEntry

autosizeInfo

shapeInfo

groupingEntry

033ecb2bc07a4d43b5ef94ed5a35d280

Microsoft.PowerShell.Commands.Internal.Format.TableHeaderInfo

9e210fe47d09416682b841769c78b8a3

27c87ef9bbda4f709f6b4002fa4af63c

4ec4f0187cb04f4cb6973460dfe252df

cf522b78d86c486691226b40aa69e95c




DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Michael B. Smith 
[mailto:mich...@smithcons.com]mailto:[mailto:mich...@smithcons.com]
Sent: Monday, October 17, 2011 3:32 PM
To: NT System Admin Issues
Subject: RE: Help with PS script?

Don't overthink it.

$adminAccount = Get-Credential
$ServerName = string
Get-WmiObject -class Win32_ComputerSystem -ComputerName $ServerName -Credential 
$adminAccount |
Format-Table `
@{l='ComputerName';e={$_.__Server.ToString()}},`
@{l='Manufacturer';e={$_.Manufacturer.ToString()}},`
@{l='Model';e={$_.Model.ToString()}},`
@{l='Operating System';e={(Get-WmiObject -class Win32_OperatingSystem 
-ComputerName $ServerName -Credential $adminAccount | Select-Object -expand 
Caption).ToString()}} -AutoSize

You should be able to pipe that to export-csv (perhaps minus the autosize - I 
didn't test it).

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Damien Solodow 
[mailto:damien.solo...@harrison.edu]mailto:[mailto:damien.solo...@harrison.edu]
Sent: Monday, October 17, 2011 1:44 PM
To: NT System Admin Issues
Subject: Help with PS script?

I'm trying to make a Powershell script to get a list of computer objects from 
AD, and query some AD properties from them and export to a CSV.
The part I have working does the queries and exports the data I want to a 
table. The export-csv is giving me grief, and I think it's because I need to 
convert the data to strings to export them out.

I think after the get-adcomputer I need to do a foreach-object to run the 
script block for each, but I'm having a brain fart.

Here's the part I have for the WMI info I need:

$adminAccount = Get-Credential
$ServerName = string
Get-WmiObject -class Win32_ComputerSystem -ComputerName $ServerName

RE: Public time sources

2011-09-22 Thread Damien Solodow
I like 0.us.pool.ntp.org

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Tom Miller [mailto:tmil...@hnncsb.org]
Sent: Thursday, September 22, 2011 11:06 AM
To: NT System Admin Issues
Subject: Public time sources

Folks,

I am reconfiguring my time providers for my AD servers.  What are you using for 
your public time sources?

Thanks
Tom


Confidentiality Notice: This e-mail message, including attachments, is for the 
sole use of the intended recipient(s) and may contain confidential and 
privileged information. Any unauthorized review, use, disclosure, or 
distribution is prohibited. If you are not the intended recipient, please 
contact the sender by reply e-mail and destroy all copies of the original 
message.

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: Free syslog virtual appliance recommendations?

2011-09-20 Thread Damien Solodow
Which Solarwinds products do you have? NPM and NCM both include an integrated 
syslog..

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE


-Original Message-
From: Mike Leone [mailto:oozerd...@gmail.com] 
Sent: Tuesday, September 20, 2011 2:35 PM
To: NT System Admin Issues
Subject: Re: Free syslog virtual appliance recommendations?

On 9/20/2011 2:13 PM, Andrew S. Baker wrote:
 You might want to look at Untangle
 
 http://www.untangle.com/Download-Untangle
 
 I *think* it has a SysLog installed.  Otherwise, it's not a huge issue 
 to build it in on a Linux box.

True. However, we are a Solar Winds customer, and apparently they include a 
basic syslog server in their Engineer's Toolset (which we also own), so I 
think I can set that up.

Thanks everybody!


~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ 
http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: if/else statement problem.

2011-09-15 Thread Damien Solodow
The ELSE clause must occur on the same line as the command after the IF.  For 
example:

IF EXIST filename. (
del filename.
) ELSE (
echo filename. missing.
)

The following would NOT work because the del command needs to be terminated by 
a newline:

IF EXIST filename. del filename. ELSE echo filename. missing

Nor would the following work, since the ELSE command must be on the same line 
as the end of the IF command:

IF EXIST filename. del filename.
ELSE echo filename. missing

The following would work if you want it all on one line:

IF EXIST filename. (del filename.) ELSE echo filename. missing

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Jimmy Tran [mailto:jt...@teachtci.com]
Sent: Thursday, September 15, 2011 5:26 PM
To: NT System Admin Issues
Subject: if/else statement problem.

Can someone please tell me what is wrong with this statement?

if exist C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbam.exe (
REG ADD HKLM\Software\Wow6432Node\Malwarebytes' Anti-Malware /v silentipmode 
/t REG_DWORD /d 1)
ELSE (
REG ADD HKLM\Software\Malwarebytes' Anti-Malware /v silentipmode /t REG_DWORD 
/d 1)

I keep getting an error stating else is not a recognized command.  Is there a 
better way to do this?  Running this on a W7 box.

Thanks

Jimmy

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: password questions

2011-09-09 Thread Damien Solodow
Considering it sounds like you're talking to individuals about Internet 
security for their personal things, I'd suggest pointing them to LastPass. 
Free, makes life much easier for web site credentials, and lots of docs/advice 
for n00bs.

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Crawford, Scott [mailto:crawfo...@evangel.edu]
Sent: Friday, September 09, 2011 1:59 PM
To: NT System Admin Issues
Subject: RE: password questions

Back in the day, L0pht would be completely ineffectual against such a password, 
even if you included said character in its character set. I emailed L0pht at 
the time and they said they didn't support cracking alt-char passwords.  I've 
heard that this is not the case with other password crackers, but even if so, 
adding these types of characters extends the time for brute-force cracking 
astronomically. Even if you take into account rainbow tables, I haven't been 
able to find a rainbow table that includes that wide of a character set.

All that said, we moved away from alt-char passwords since they often 
introduced incompatibilities. Outlook Web Access was one place they failed for 
us years ago. Again, I don't know if this has improved, but I would guess not.  
Another possible problem is trying to use them on devices that lack a method of 
entering them.  Most phone's don't have an alt key and numeric keypad :)

One other, note, not all alt-chars are created equal, especially if you're 
cracking against an LM hash. For instance, alt-141 (ì) is interpreted as simply 
a lowercase (i). There's a quite dated, yet relevant, article at sysopt about 
some of my findings at http://www.sysopt.com/tutorials/article.php/3532756. The 
download referenced is no longer available, but I have the original if you're 
interested.

From: Shauna Hensala [mailto:she...@msn.com]mailto:[mailto:she...@msn.com]
Sent: Friday, September 09, 2011 11:32 AM
To: NT System Admin Issues
Subject: password questions

I have been asked to speak to an group regarding personal internet security.  
This will be a fairly light weight discussion and I have a couple of really 
good references regarding choosing secure passwords and the 
https://www.grc.com/haystack.htm site for testing.

My question for all of you is this:

What if you incorporate a symbol not normally found on a keyboard into your 
password - such as ¢ which requires the key combo alt/0162?  Does this increase 
or decrease the hackability of your password - or is it completely irrelevant?  
To a hacker, is the actual password alt0162 or is it ¢?

Thanks for any information you can offer.


Shauna Hensala



Date: Fri, 9 Sep 2011 16:07:15 +0100
Subject: Re: External subdomains considered dangerous?
From: kz2...@googlemail.commailto:kz2...@googlemail.com
To: 
ntsysadmin@lyris.sunbelt-software.commailto:ntsysadmin@lyris.sunbelt-software.com

Aha, you are therefore a Chinese agent :-)
On 9 September 2011 15:47, Matthew B Ames 
matthew.a...@qinetiq.commailto:matthew.a...@qinetiq.com wrote:
Maybe those companies only use external hosted pop3/imap accounts (granted that 
is unlikely).

I assume from the article is more about a company emailing another company.

I own a .org.ukhttp://org.uk domain in the UK, and I quite often get emails 
(which is meant for the .org).  I have even had invoices, emails from their 
accounts department, etc landing in my personal email.  More recently I had a 
batch of CVs for people apply for job applications as a secretary - either they 
misread the advert or just automatically typed in the .uk without thinking 
about it - as the .org is a UK based company).

From: Andrew S. Baker [mailto:asbz...@gmail.commailto:asbz...@gmail.com]
Sent: 09 September 2011 15:31
To: NT System Admin Issues
Subject: Re: External subdomains considered dangerous?

Why are internal email addresses being typed in manually?
ASB

http://XeeMe.com/AndrewBaker

Harnessing the Advantages of Technology for the SMB market...


On Fri, Sep 9, 2011 at 10:04 AM, Kurt Buff 
kurt.b...@gmail.commailto:kurt.b...@gmail.com wrote:
20gb of email in six months, and it includes full router configs with
passwords, too.
http://www.wired.com/threatlevel/2011/09/doppelganger-domains/
~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin
This email and any attachments to it may be confidential and are intended 
solely for the use of the individual to whom it is addressed. If you are not 
the intended recipient of this email, you must neither take any action based 
upon its contents, nor copy or show it to anyone. Please contact the sender if 
you believe you have received this email

RE: HKCU permissions change via GPO?

2011-09-08 Thread Damien Solodow
You'd be better off using the Excel ADM file in the GPO to make that change 
directly. :) Good rule of thumb is if it's under Software\Policies, it's 
configurable via a GPO with an ADM file. :)

DAMIEN SOLODOW
Systems Engineer
317.447.6033 (office)
317.447.6014 (fax)
HARRISON COLLEGE

From: Bernard, Norm [mailto:norm.bern...@nrc-cnrc.gc.ca]
Sent: Thursday, September 08, 2011 2:10 PM
To: NT System Admin Issues
Subject: HKCU permissions change via GPO?

Hello Folks

What I need to do is change the permissions on all system's HKCU (or all user 
hives if possible!). Specifically I need to change HKCU\Software\Policies\ 
permissions to allow current user the right to create/edit sub keys/values

I am currently trying to use SCCM to push out a registry fix for Excel 2003 
(The reg file contains the following, and I have created an SCCM package that 
TRIED to apply the registry fix, but it appears that there is a permissions 
issue - confirmed by manually trying to apply the reg file at the local machine 
with the logged on user account:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\11.0\Excel]
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\11.0\Excel\Security]
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\11.0\Excel\Security\FileValidation]
EnableOnLoad=dword:
Any help would be appreciated!

Kindest Regards,

Norm Bernard,
Systems Administrator / Administrateur Système
tel/tél: 604-221-3023| facsimile/télécopieur: 604-221-3001 | 
norm.bern...@nrc-cnrc.gc.camailto:norm.bern...@nrc-cnrc.gc.ca
NRC Institute for Fuel Cell Innovation | 4250 Wesbrook Mall, Vancouver, B.C. 
V6T 1W5
Institut d'innovation en piles à combustible du CNRC | 4250 Wesbrook Mall, 
Vancouver (C.-B.) V6T 1W5
Government of Canada | Gouvernement du Canada




~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.commailto:listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

  1   2   3   4   5   >