RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Carl Houseman
No need to kill anything. Just type "explorer ." from an elevated command prompt. Putting a parameter on the command line is important. You'll get a new process that's elevated, regardless of the "launch folder windows in separate process" setting. Carl -Original Message- From: Kurt

Re: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Kurt Buff
Just kill explorer once - as soon as you log in. :) On Mon, Feb 21, 2011 at 18:17, Crawford, Scott wrote: > Yeah, that definitely works, but killing explorer every time you want to > switch contexts gets tedious. You can kill it with task manager too for the > same effect. > > > > Sent from my Pa

Re: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Crawford, Scott
Yeah, that definitely works, but killing explorer every time you want to switch contexts gets tedious. You can kill it with task manager too for the same effect. Sent from my Palm Pre on the Now Network from Sprint On Feb 21, 2011 6:53 PM, Kurt Buff wrote: H

Re: Good source of powershell scripts

2011-02-21 Thread Steven Peck
for random mining using the search feature, you can at times find gems on poshcode http://poshcode.org/ On Mon, Feb 21, 2011 at 5:42 AM, Oliver Marshall < oliver.marsh...@g2support.com> wrote: > Hi Chaps, > > > > Other than the MS Script Repository can anyone name a good site or place to > fi

Re: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Kurt Buff
Hmmm... If that's all true, then doing 'pskill explorer' from an elevated cmd prompt and a runas script should do the trick as well, I would think. Kurt On Mon, Feb 21, 2011 at 15:36, Carl Houseman wrote: > http://vistavitals.blogspot.com/2008/06/uac-elevate-windows-explorer.html > > > > Carl >

RE: Help with a Juniper Netscreen firewall

2011-02-21 Thread Erik Goldoff
Thinking he means under Network, Interfaces, Untrust, VIP , and create the actual port forward to go with the policy that allows the port forward. Erik Goldoff IT Consultant Systems, Networks, & Security ' Security is an ongoing process, not a one time event ! ' -Original Message-

RE: Dell battery replacement still giving warning

2011-02-21 Thread Carl Houseman
Um, an actual Dell battery that's been refurbed by someone other than Dell is no longer an "actual Dell battery". And more likely than a lithium fire is simply "old batteries". Batteries degrade just sitting on shelf. Carl -Original Message- From: John Aldrich [mailto:jaldr...@blueridge

RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Carl Houseman
http://vistavitals.blogspot.com/2008/06/uac-elevate-windows-explorer.html Carl From: Crawford, Scott [mailto:crawfo...@evangel.edu] Sent: Monday, February 21, 2011 1:24 PM To: NT System Admin Issues Subject: RE: Windows 2008 R2 - Default NTFS Permissions on new drive Not quite. You ca

RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Crawford, Scott
Yeah, I've started noticing that as well. I'm not too concerned with its features beyond the ability to help get around UAC. If it accomplishes that for me, it's served its purpose. I'm heavily considering turning off UAC on my servers for this very reason, but I'd like to keep it if possible.

RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Michael B. Smith
I tried explorer++ for awhile, and I like its capabilities - but it's too slow to load. Explorer pops right up - subsecond. Explorer++ takes a couple of second - and I hate that. :-P Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Crawford, Scott [ma

Re: Help with a Juniper Netscreen firewall

2011-02-21 Thread Jim Majorowicz
Okay, I figured it out. I added it to the VIP here as a new service and it works now. Thanks for pointing out where the VIP settings were. I was having a heck of time finding them. On Mon, Feb 21, 2011 at 11:38 AM, Kramer, Jack wrote: > The port forward is done as a VIP - the policy enables t

Re: Help with a Juniper Netscreen firewall

2011-02-21 Thread Jim Majorowicz
This is all I see under VIP of the untrust policy: VIP VIP Services IP Address Configure Virtual Port Service(port) Server IP Status Configure 70.103.231.202 Edit Remove 443 HTTPS(443) 192.168.18.2 OK Edit Remove 25 MAIL(25) 192.168.18.2 OK Edit Remove On Mon, Feb 21, 2011 at 11:38 AM, Kramer,

Re: Help with a Juniper Netscreen firewall

2011-02-21 Thread Jim Majorowicz
I'm assuming that was what the other two are. If I remember correctly, I just ran some sort of wizard. Here's the entire logs for the day so far: 2011-02-21 13:44:26 info VIP server 192.168.18.2 now alive 2011-02-21 13:44:26 crit VIP server 192.168.18.2 cannot be contacted 2011-02-21 13:43:06 in

Re: File Copier with GUI?

2011-02-21 Thread Andrew S. Baker
For me, these aren't one-off problems... They happen often enough, with only minor detail differences. I have a script (acopy.bat) that I use to copy files from one location to another. You could call it as follows: for %v in (dir1 dir2 dir3 dir4) do acopy "\\source\share\%~v" "\\destination\sha

Re: File Copier with GUI?

2011-02-21 Thread Bob Hartung
I use BeyondCompare ( www.scootersoftware.com ). It can do what you need and it's also an excellent synchronizing utility. Another possibility might be the backup software you're using. We use Arcserve and they have a Copy utility. Even if your backup software doesn't have that, I'm sure it cou

Re: File Copier with GUI?

2011-02-21 Thread Jonathan Link
And if the data changes, and you're trying to keep up with those changes, robocopy becomes the most efficient out of what's been suggested so far... On Mon, Feb 21, 2011 at 3:37 PM, Crawford, Scott wrote: > Dir /ad will return only directories. > > > > I agree – the For /F option is ideal her

Re: File Copier with GUI?

2011-02-21 Thread Kelli Sterley
I've used Terracopy - it will skip problem files and continue copying or moving files. On Mon, Feb 21, 2011 at 3:20 PM, Paul Hutchings wrote: > You know the scenario, you need to copy a few hundred gigs worth of > specific sub directories from A to B. > > > > Robocopy is probably ideal but it’s a

RE: File Copier with GUI?

2011-02-21 Thread Crawford, Scott
Dir /ad will return only directories. I agree - the For /F option is ideal here. If you want something a little more permanent, create a batch file with ---robo.bat For /F %%i in (DirectoriesToCopy.txt) do robocopy /mir %%i %1 ---robo.bat To use it, run dir /ad/b > Direc

Re: File Copier with GUI?

2011-02-21 Thread Jonathan Link
And I've left 5 minutes before, because I used a script and your still clicking, oh wait, forgot to ctrl click and need to start over... On Mon, Feb 21, 2011 at 3:30 PM, Paul Hutchings wrote: > Nothing “wrong”, it’s just long winded for one-off’s vs. load gui, hit > souce, tick subset of folders

RE: File Copier with GUI?

2011-02-21 Thread N Parr
Could use something like SyncbackPro. Probably overkill for your situation and would take just as long to script a one time operation. But it's cheap and has plenty of filter and logging options. From: Paul Hutchings [mailto:paul.hutchi...@mira.co.uk] Sent: Mond

Re: File Copier with GUI?

2011-02-21 Thread Mike Sullivan
You can give this a try. http://www.winzero.ca/ServerMigrator.html It can do what you want even if it is called Serve Migrator. You can even have it do a "dry run" to see where there could be problems. On Mon, Feb 21, 2011 at 12:20 PM, Paul Hutchings wrote: > You know the scenario, you need to co

RE: File Copier with GUI?

2011-02-21 Thread Paul Hutchings
Nothing "wrong", it's just long winded for one-off's vs. load gui, hit souce, tick subset of folders, choose dest, hit go, walk off and leave. From: Jonathan Link [mailto:jonathan.l...@gmail.com] Sent: 21 February 2011 20:27 To: NT System Admin Issues Subject: Re: File Copier with GUI? You

RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Crawford, Scott
Yeah, UAC and Explorer is a major pain. It's basically completely broken. Just like the OP, I have drives permissioned with only Administrators:F and System:F. When opening that drive, one would expect to get a UAC prompt, but none is to be found. I recently came across http://blogs.technet.com

Re: File Copier with GUI?

2011-02-21 Thread Jonathan Link
Note if your files don't have periods in them, dir *. /b will grab directories (and files without extensions). On Mon, Feb 21, 2011 at 3:26 PM, Jonathan Link wrote: > You say subdirectories...as in directories under a folder... > What's wrong with robocopy /mir necessary>? > > Or grab a direct

Re: File Copier with GUI?

2011-02-21 Thread Jonathan Link
You say subdirectories...as in directories under a folder... What's wrong with robocopy /mir ? Or grab a directory listing that's blank dir /b >directory.txt, filter the unneeded directories (and files) and use a for /f %f in (directory.txt) do robocopy X:\%f Y:\%f /mir , where X is the source d

Re: RE: double hop RDP

2011-02-21 Thread Sam Cayze
I do nested rdp all the time, and I use mremote for the middle machine. Mremote has a send keyboard command option and ctrl alt del is an option. Works like a charm. On Feb 21, 2011 1:42 PM, "Crawford, Scott" wrote: > Are you needing more than "Start/Windows Security" gives you? > > From: Kevin L

File Copier with GUI?

2011-02-21 Thread Paul Hutchings
You know the scenario, you need to copy a few hundred gigs worth of specific sub directories from A to B. Robocopy is probably ideal but it's a PITA to script all those folder paths for a one-time operation, and if you do a ctrl-select and set the copy off from Windows Explorer you can be prett

Re: OT : Which AMD AM3 mobo ?

2011-02-21 Thread Bill Humphries
I bought the 880gm-ud2h this weekend bundled with a x2 555 processor which I hope to unlock to x4. It's a similar board, but no USB3 or 6Gb sata. Board and processor for $140. Not bad for quad core. It'll be the lightroom/photoshop/ home office machine. The board is micro and affordable, s

RE: Dell battery replacement still giving warning

2011-02-21 Thread John Aldrich
Actually it's supposed to be an actual Dell battery that's been refurbed by someone other than Dell, so it doesn't have the Dell sticker price. :-) Still, it may be better if we can't get this working, to go ahead and pay the $80 or so that Dell wants for a new battery.. -Original Message--

RE: Dell battery replacement still giving warning

2011-02-21 Thread John Aldrich
Thanks... the first didn't really apply, at least not the "battery troubleshooting utility." That's for a different series of Latitude laptops. This is a D531 Latitude. I did try the "battery reset" in the second link, but that didn't make any difference either. The same "end of life" message came

Re: Dell battery replacement still giving warning

2011-02-21 Thread Jonathan Link
Working out frustration can do odd things to one's mind... On Mon, Feb 21, 2011 at 2:33 PM, Jonathan wrote: > +1 - we had to rent some laptops one time about 5 years ago. At least two > of them caught fire...fun times. > > Jonathan - Thumb typed from my HTC Droid Incredible (and yes, it really i

RE: double hop RDP

2011-02-21 Thread Crawford, Scott
Are you needing more than "Start/Windows Security" gives you? From: Kevin Lundy [mailto:klu...@gmail.com] Sent: Monday, February 21, 2011 1:26 PM To: NT System Admin Issues Subject: Re: double hop RDP Success. That worked with the ctrl-alt-end combination. Thanks. Yes, Eric you are right, this

RE: F5 ARX opinions

2011-02-21 Thread Brian Desmond
I can't speak to the product in question, but, in general my experience with F5 has been top notch. The products I've used have been fantastic as has their support. Thanks, Brian Desmond br...@briandesmond.com c   - 312.731.3132 -Original Message- From: Mark Weber [mailto:mrk...@gmai

RE: F5 ARX opinions

2011-02-21 Thread Martin Blackstone
We sell them but I have no experience with them. I do know that customers really like them once they get a test model onsite. -Original Message- From: Mark Weber [mailto:mrk...@gmail.com] Sent: Monday, February 21, 2011 11:09 AM To: NT System Admin Issues Subject: F5 ARX opinions Hi all

Re: Help with a Juniper Netscreen firewall

2011-02-21 Thread Andrew S. Baker
In addition to the port forwarding, you will need to setup a separate policy for that traffic to hit the necessary box on your internal network. You should already have similar HTTPS and SMTP policies in place, if those protocols are working. What is showing up in the logs for this traffic? *A

Re: Help with a Juniper Netscreen firewall

2011-02-21 Thread Kramer, Jack
The port forward is done as a VIP - the policy enables that VIP to actually forward the traffic. You need both for it to work. The custom service looks okay. It's "in use" because it's listed in a policy/VIP - the in use prevents it from being deleted. Check your VIP settings for your WAN interface

Help with a Juniper Netscreen firewall

2011-02-21 Thread Jim Majorowicz
I've got a client with Juniper NetScreen NS5XP and I need help setting up a port forward apparently. The HTTPS and SMTP forward work fine, but I need to setup Port 987 as well. Under Policies they look like this: >From Untrust To Global, total policy: 3 ID Source Destination Service Action Option

Re: Dell battery replacement still giving warning

2011-02-21 Thread Jonathan
+1 - we had to rent some laptops one time about 5 years ago. At least two of them caught fire...fun times. Jonathan - Thumb typed from my HTC Droid Incredible (and yes, it really is) on the Verizon network. On Feb 21, 2011 2:22 PM, "Kramer, Jack" wrote: > Off-brand battery? I've used them before

Re: double hop RDP

2011-02-21 Thread Andrew S. Baker
The first time, I did the OSK on system C rather than B. :) *ASB *(Find me online via About.Me ) *Exploiting Technology for Business Advantage... * On Mon, Feb 21, 2011 at 2:25 PM, Kevin Lundy wrote: > Success. That worked with the ctrl-alt-end combin

Re: double hop RDP

2011-02-21 Thread Andrew S. Baker
Okay, I did get it to work, but I had to pay attention to the instructions. :) A = Physical Host B = First RDP destination C = RDP destination from B If you want to send the CTRL-ALT-DEL sequence to machine C, then: - Go to B - Put machine C into a window (rather than than full screen)

Re: double hop RDP

2011-02-21 Thread Kevin Lundy
Success. That worked with the ctrl-alt-end combination. Thanks. Yes, Eric you are right, this is a A-B-C subnet restriction temporary workaround. Thanks!! On Mon, Feb 21, 2011 at 2:16 PM, Andrew S. Baker wrote: > Hey, Kevin > > Check out this link: One of the comments suggests using the O

RE: double hop RDP

2011-02-21 Thread Erik Goldoff
Same here … Erik Goldoff IT Consultant Systems, Networks, & Security ' Security is an ongoing process, not a one time event ! ' From: Andrew S. Baker [mailto:asbz...@gmail.com] Sent: Monday, February 21, 2011 2:20 PM To: NT System Admin Issues Subject: Re: double hop RDP Hi Erik,

Re: Dell battery replacement still giving warning

2011-02-21 Thread Kramer, Jack
Off-brand battery? I've used them before when I need something cheap and immediate but with batteries, you really get what you pay for. Also you run the risk of off-brands being made with defective cells and there's nothing more fun than a lithium fire in your lap! Jack Kramer Computer System

Re: double hop RDP

2011-02-21 Thread Andrew S. Baker
Hi Erik, I've done lots of double-nested RDP, for the reasons you mention, but I've never had to send the CTRL-ALT-DEL keystroke to the final RDP recipient, so I've never even looked into this. :) Nice challenge for now... *ASB *(Find me online via About.Me )

Re: double hop RDP

2011-02-21 Thread Andrew S. Baker
Perhaps with XP, but not where 2008R2 is concerned. *ASB *(Find me online via About.Me ) *Exploiting Technology for Business Advantage... * On Mon, Feb 21, 2011 at 2:11 PM, Rankin, James R wrote: > Ctrl alt shift del as I remember > > Typed frustratingly

Re: double hop RDP

2011-02-21 Thread Andrew S. Baker
Hey, Kevin Check out this link: One of the comments suggests using the On Screen keyboard http://www.online-tech-tips.com/windows-xp/ctrl-alt-del-remote-desktop/ I tried it via START -> RUN -> OSK on the nested system (which in my case is a 2008 R2 machine), but it didn't work for me. Maybe i

RE: double hop RDP

2011-02-21 Thread Erik Goldoff
Sounds like the tertiary target is not available from the parent’s subnet, so A remotes into B, and from B he initiates a new RDP into C Erik Goldoff IT Consultant Systems, Networks, & Security ' Security is an ongoing process, not a one time event ! ' From: Andrew S. Baker [mailto:asbz.

Re: double hop RDP

2011-02-21 Thread Rankin, James R
Or it may be ctrl alt shift end, try 'em both Typed frustratingly slowly on my BlackBerry® wireless device -Original Message- From: richardmccl...@aspca.org Date: Mon, 21 Feb 2011 12:56:44 To: NT System Admin Issues Reply-To: "NT System Admin Issues" Subject: Re: double hop RDP Does Ct

Re: double hop RDP

2011-02-21 Thread Rankin, James R
Ctrl alt shift del as I remember Typed frustratingly slowly on my BlackBerry® wireless device -Original Message- From: "Andrew S. Baker" Date: Mon, 21 Feb 2011 14:08:32 To: NT System Admin Issues Reply-To: "NT System Admin Issues" Subject: Re: double hop RDP That's interesting, Kevin.

F5 ARX opinions

2011-02-21 Thread Mark Weber
Hi all – We are looking into purchasing a file virtualization solution and the one that I’m currently most interested in is the F5 ARX. Does anyone have any in production or experience using them? I’m interested in hearing how well they work, any gotchas, etc. We mostly want them for the global n

Re: double hop RDP

2011-02-21 Thread Andrew S. Baker
That's interesting, Kevin. I've never needed to send it to a nested RDP client before. :) I haven't yet seen a good approach for this. What do you need to do? Logon? If so, just start a new MSTSC command from the parent and take control in the new instance. *ASB *(Find me online via Abou

Re: double hop RDP

2011-02-21 Thread Kevin Lundy
Nope On Mon, Feb 21, 2011 at 1:56 PM, wrote: > > Does Ctrl-Alt-Insert work? > > Kevin Lundy wrote on 02/21/2011 12:50:59 PM: > > > > I am trying to RDP into a Win 7 box, and from there RDP into an XP > > box. Anyone know how to send ctrl-alt-del to the 2nd session? When > > I do ctrl-alt-end,

Re: double hop RDP

2011-02-21 Thread Kevin Lundy
That applies to the first RDP On Mon, Feb 21, 2011 at 1:56 PM, Jonathan Link wrote: > Ctrl-Alt-End > > > On Mon, Feb 21, 2011 at 1:50 PM, Kevin Lundy wrote: > >> I am trying to RDP into a Win 7 box, and from there RDP into an XP box. >> Anyone know how to send ctrl-alt-del to the 2nd session? W

Re: double hop RDP

2011-02-21 Thread RichardMcClary
Does Ctrl-Alt-Insert work? Kevin Lundy wrote on 02/21/2011 12:50:59 PM: > I am trying to RDP into a Win 7 box, and from there RDP into an XP > box. Anyone know how to send ctrl-alt-del to the 2nd session? When > I do ctrl-alt-end, I am getting a response from the Win 7. > > No luck with Goo

Re: double hop RDP

2011-02-21 Thread Jonathan
How about if you install VNC, or use showmypc.com for the last machine? That would enable you to send commands like that with the click of a mouse. Jonathan - Thumb typed from my HTC Droid Incredible (and yes, it really is) on the Verizon network. On Feb 21, 2011 1:51 PM, "Kevin Lundy" wrote: > I

Re: double hop RDP

2011-02-21 Thread Jonathan Link
Ctrl-Alt-End On Mon, Feb 21, 2011 at 1:50 PM, Kevin Lundy wrote: > I am trying to RDP into a Win 7 box, and from there RDP into an XP box. > Anyone know how to send ctrl-alt-del to the 2nd session? When I do > ctrl-alt-end, I am getting a response from the Win 7. > > No luck with Google so far.

Re: Dell battery replacement still giving warning

2011-02-21 Thread Jonathan Link
All that "counter" does is actually do a better job of presenting an accurate picture of how much battery life you have. You indicate the battery lasts for 45 minutes, that's the life of the battery as it is now. If however, your laptop is indicating that it has 2 hours of life, that's the counter

Re: Monday morning not-so-funny

2011-02-21 Thread Andrew S. Baker
Not cool at all -ASB: http://about.me/Andrew.S.Baker Sent from my Motorola Droid On Feb 21, 2011 11:25 AM, "Devin Meade" wrote: > Hello all, > > Our electric provider, OG&E, calls us at 10 AM saying "We are replacing your > meter now and we will cut your power off in about 1 min". Our facilitie

double hop RDP

2011-02-21 Thread Kevin Lundy
I am trying to RDP into a Win 7 box, and from there RDP into an XP box. Anyone know how to send ctrl-alt-del to the 2nd session? When I do ctrl-alt-end, I am getting a response from the Win 7. No luck with Google so far. Thanks Kevin ~ Finally, powerful endpoint security that ISN'T a resource h

Re: Dell battery replacement still giving warning

2011-02-21 Thread Lee Douglas
Maybe these will help http://www.ehow.com/how_5047579_troubleshoot-dell-latitude-battery.html http://www.ehow.com/how_6902832_reset-dell-laptop-battery.html On Mon, Feb 21, 2011 at 1:39 PM, John Aldrich wrote: > Well, we didn't go through Dell... they wanted about 3 times what we paid > for it o

RE: Dell battery replacement still giving warning

2011-02-21 Thread Crawford, Scott
Counter? The battery physically degrades over time. If you're seeing decreased run time, the solution is a new battery. -Original Message- From: John Aldrich [mailto:jaldr...@blueridgecarpet.com] Sent: Monday, February 21, 2011 12:39 PM To: NT System Admin Issues Subject: RE: Dell batte

Re: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Andrew S. Baker
I've never really left the CLI, but I do need to do more powershell. -ASB: http://about.me/Andrew.S.Baker Sent from my Motorola Droid On Feb 21, 2011 10:57 AM, "James Rankin" wrote: > I used to do most everything from the command linethen GUI became all > the rageand now MS are trying t

RE: Dell battery replacement still giving warning

2011-02-21 Thread John Aldrich
Well, we didn't go through Dell... they wanted about 3 times what we paid for it on Amazon. :-) I've contacted the vendor and we'll see...but I thought maybe there might be a way to reset the "counter" or something. -Original Message- From: Kramer, Jack [mailto:jack.kra...@ur.msu.edu]

Re: Dell battery replacement still giving warning

2011-02-21 Thread Kramer, Jack
Isn't there a standard 1-year warranty on the D-series batteries? We usually go through the battery's life every year and a half to two years. If it's already failing I'd call Dell and have them get you a new one. Jack Kramer Computer Systems Specialist University Relations, Michigan State Un

RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Crawford, Scott
Not quite. You can create a separate process with "explorer /separate". This works great in XP with runas for creating an explorer window under a different security context. It still works in Vista/7/2K8 to create a separate process, but it still gets created without admin group in the token.

RE: Monday morning not-so-funny

2011-02-21 Thread Erik Goldoff
Sunovabeach ! Erik Goldoff IT Consultant Systems, Networks, & Security ' Security is an ongoing process, not a one time event ! ' From: Devin Meade [mailto:devin.me...@gmail.com] Sent: Monday, February 21, 2011 11:26 AM To: NT System Admin Issues Subject: Monday morning not-so-funny

RE: OT : Which AMD AM3 mobo ?

2011-02-21 Thread Erik Goldoff
Thanks … I saw the 128mb dedicated didn’t know it fell ‘over’ to shared when needed. Sounds like a winner. I’ve got a gigabyte EX58-UD4P for my i7-920 server box and it has been reliable too. Erik Goldoff IT Consultant Systems, Networks, & Security ' Security is an ongoing process, not

RE: RE: RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Michael B. Smith
Geeks. :-) Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Crawford, Scott [crawfo...@evangel.edu] Sent: Monday, February 21, 2011 12:03 PM To: NT System Admin Issues Subject: RE: RE: RE: Windows 2008 R2 - Default NTFS

Dell battery replacement still giving warning

2011-02-21 Thread John Aldrich
My Google-Fu is failing me today. One of my users told me late last year that he was getting a warning on his laptop that his battery was reaching the end of it's useable life, so I bought him a replacement. His new battery is saying the same thing and is only lasting about 45 minutes at most, even

RE: RE: RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Crawford, Scott
It's also originally a function of the command line, the unfamiliarity of which, was under discussion...that's why it's funny. :) Sorry, I shoulda added a smiley last time From: James Rankin [mailto:kz2...@googlemail.com] Sent: Monday, February 21, 2011 11:00 AM To: NT System Admin Issues Subjec

Re: RE: RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread James Rankin
Expandable environment variable reference - basically it is populated with whatever your current job is On 21 February 2011 16:57, Crawford, Scott wrote: > I’m not familiar with %work%. Why do you surround it with percent signs? > > > > *From:* Andrew S. Baker [mailto:asbz...@gmail.com] > *Sent

RE: RE: RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Crawford, Scott
I'm not familiar with %work%. Why do you surround it with percent signs? From: Andrew S. Baker [mailto:asbz...@gmail.com] Sent: Monday, February 21, 2011 9:54 AM To: NT System Admin Issues Subject: Re: RE: RE: Windows 2008 R2 - Default NTFS Permissions on new drive Yes, we most certainly are. I

Re: Monday morning not-so-funny

2011-02-21 Thread Kramer, Jack
Had something like that on campus recently – the physical plant sent an email telling us they were cutting power to our building to replace our power meter at 6:45am, estimated time of repair about an hour. I show up at 6:20 and power down everything, and then sit there and wait for the power to

Re: Monday morning not-so-funny

2011-02-21 Thread William Robbins
To quote the great man -sc..."OOOF! That's just sad incompetence there. Hopefully all systems power up smoothly. - WJR On Mon, Feb 21, 2011 at 10:25, Devin Meade wrote: > Hello all, > > Our electric provider, OG&E, calls us at 10 AM saying "We are replacing > your meter now and we will cut

Monday morning not-so-funny

2011-02-21 Thread Devin Meade
Hello all, Our electric provider, OG&E, calls us at 10 AM saying "We are replacing your meter now and we will cut your power off in about 1 min". Our facilities mgr says "Uh no you don't, you didn't' schedule it". They say they must do it. So we say we need at least 15 min and shame on you for

RE: RE: RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Maglinger, Paul
Because I administrate UNIX and Windows, PowerShell isn't too much of a stretch. The only thing I wish for in command line is some consistency. From: James Rankin [mailto:kz2...@googlemail.com] Sent: Monday, February 21, 2011 9:57 AM To: NT System Admin Issues Subject: Re: RE: RE: Windows 2008 R

Re: RE: RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread James Rankin
I used to do most everything from the command linethen GUI became all the rageand now MS are trying to convert us all back via PowerShell. It's high time I grasped the nettle and went fully PSI spend too much time loading up old utilities from the NT4 ResKit just to do my day-to-day tas

Re: RE: RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Andrew S. Baker
Yes, we most certainly are. I'm still trying to work on many members of my team at %work% -ASB: http://about.me/Andrew.S.Baker Sent from my Motorola Droid On Feb 21, 2011 8:44 AM, "Michael B. Smith" wrote: ~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~

RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread John Hornbuckle
This isn't just you-I've run into the same thing with 2008 (I believe the behavior isn't limited just to R2). John Hornbuckle MIS Department Taylor County School District www.taylor.k12.fl.us From: Paul Hutchings [mailto:paul.hutchi...@mira.co.uk] Sent: Monday, F

Re: OT : Which AMD AM3 mobo ?

2011-02-21 Thread Hank .
The integrated graphics performs really well. It definitely isn't the lame integrated graphics of old. It has dedicated faster memory on the board just for video and it shares RAM if the needs go beyond that. Plus if you need extra super duper graphics it has slots. It has plenty of SATA ports, bu

RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Paul Hutchings
OK so disabling UAC lets me get at the data (though I could get at it from cmd.exe with UAC enabled). At least now I have something to go on in trying to track down quite which setting it is that "protects" Administrators from accessing data to which they have access... grrr! From: Michael B

RE: Good source of powershell scripts

2011-02-21 Thread John Cook
A good place to start http://theessentialexchange.com/ John W. Cook System Administrator 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 From: Oliver Marshall [mailto:oliver.marsh

RE: RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Michael B. Smith
Me too. But in that, I fear, we are still outliers. Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Andrew S. Baker [mailto:asbz...@gmail.com] Sent: Monday, February 21, 2011 8:42 AM To: NT System Admin Issues Subject: Re: RE: Windows 2008 R2 - Default

Re: RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Andrew S. Baker
I love me some CMD access. :) -ASB: http://about.me/Andrew.S.Baker Sent from my Motorola Droid On Feb 21, 2011 8:35 AM, "Michael B. Smith" wrote: > Completely about UAC. > > Disable UAC or use the File Server / Shares MMCs (elevated, of course) instead of Windows Explorer. > > Regards, > > Mic

Re: Tool or process for troubleshooting/benchmarking logon times

2011-02-21 Thread Andrew S. Baker
I only use procmon. I'm pretty sure that you can limit what is logged by limiting the processes being tracked, and removing registry items, etc -ASB: http://about.me/Andrew.S.Baker Sent from my Motorola Droid On Feb 21, 2011 8:21 AM, "James Rankin" wrote: ~ Finally, powerful endpoint security

RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Paul Hutchings
It's just a VM from a volume license 2008 R2 ISO download. I'm just going to try UAC now - it seems to be a console thing, I can do \\server\e$ or whatever drive it may be with no problem. From: Andrew S. Baker [mailto:asbz...@gmail.com] Sent: 21 February 2011 13:33 To: NT System Admin Issu

RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Michael B. Smith
You can't actually do a run-as for Windows Explorer. There is only a single process per login, so the run-as doesn't work as expected. Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Paul Hutchings [mailto:paul.hutchi...@mira.co.uk] Sent: Monday, Febr

RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Michael B. Smith
Completely about UAC. Disable UAC or use the File Server / Shares MMCs (elevated, of course) instead of Windows Explorer. Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Andrew S. Baker [mailto:asbz...@gmail.com] Sent: Monday, February 21, 2011 8:33

Re: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Andrew S. Baker
How are you creating these VMs? This doesn't sound like normal behavior... -ASB: http://about.me/Andrew.S.Baker Sent from my Motorola Droid On Feb 21, 2011 8:20 AM, "Paul Hutchings" wrote: > Just starting to roll out some 2008 R2 based VM's. > > I've created a couple of new partitions on one o

Re: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread James Rankin
I often find there's some permissions funniness unless UAC is turned off by GPO. You could maybe give that a bash. Can you actually get into the security tab on the root of the drive and see if it errors out there? On 21 February 2011 13:25, Paul Hutchings wrote: > Not consciously no – should i

Deactive license in VAMT?

2011-02-21 Thread Mayo, Bill
We are using the Volume Activation Management Tool to do proxy activations for our Windows 2008 servers. I have a 2008 (virtual) server that was activated using this, and had to be replaced with a new VM. I am therefore getting ready to decommission/delete this server, but wasn't sure if I needed

RE: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread Paul Hutchings
Not consciously no - should it be just to access a hard drive? I did try running Windows Explorer with "Run as Administrator" and I still got access denied. From: James Rankin [mailto:kz2...@googlemail.com] Sent: 21 February 2011 13:24 To: NT System Admin Issues Subject: Re: Windows 2008 R2 -

Re: Windows 2008 R2 - Default NTFS Permissions on new drive

2011-02-21 Thread James Rankin
UAC turned off? On 21 February 2011 13:19, Paul Hutchings wrote: > Just starting to roll out some 2008 R2 based VM's. > > I've created a couple of new partitions on one of them, and thought I'd > lock the permissions down to the local Administrators group and SYSTEM, but > I'm finding that logge

Tool or process for troubleshooting/benchmarking logon times

2011-02-21 Thread James Rankin
Does anyone know of a tool or process that could be used to test and troubleshoot the logon process? I'm running on Windows Server 2008 R2 with XenApp 6 and as far as I can tell the user environment logging that you could enable in previous Windows versions has been removed, meaning that figuring o