Search found 1789 matches

by jhicks
Mon Jul 01, 2013 9:42 am
Forum: VersionRecall
Topic: Activity Log
Replies: 2
Views: 4775

Activity Log

I never see anything in Activity Log, even though I've configured the service to log repository updates which I assumed would show up here.
by jhicks
Mon Jul 01, 2013 9:38 am
Forum: VersionRecall
Topic: Alternate Repository Forking
Replies: 4
Views: 6453

Alternate Repository Forking

I'm trying to understand alternate repositories based on what I read in the PDF. One hand it seems like you can specify a second repository path but it won't be synchronized. Then the doc mentions setting up a fork, which is what I would like to do. I would like to have changes recorded on my D:\ dr...
by jhicks
Mon Jul 01, 2013 9:35 am
Forum: VersionRecall
Topic: Service Status
Replies: 3
Views: 6051

Service Status

When I look at the service settings in the GUI, it always the service is stopped. But the VRService.exe (I hope you eventually make this just VRService) is running. Or is there another service I'm overlooking? Running Windows 8 Pro x64.
by jhicks
Fri Sep 07, 2012 3:09 am
Forum: PowerShell
Topic: adding viewing static routes remotely
Replies: 10
Views: 12050

adding viewing static routes remotely

If you have a tool, like VBScript, that gets the job done, I say go for it. Although you comment about PowerShell remoting a no-go but you can use psexec is interesting. In the long term I encourage you to make PowerShell remoting possible in your environment. If you are running Windows servers it i...
by jhicks
Fri Sep 07, 2012 12:25 am
Forum: PowerShell
Topic: adding viewing static routes remotely
Replies: 10
Views: 12050

adding viewing static routes remotely

It seems this is still complicated even in PowerShell. If you have remoting enabled, I would simply use the ROUTE command and add the routes remotely with Invoke-Command.
by jhicks
Fri Aug 31, 2012 6:57 am
Forum: PowerShell
Topic: first time use
Replies: 3
Views: 2036

first time use

It sounds like you are jumping into the deep end right off the bat. First, you need to understand what PowerShell is and how people use it. If you haven't already you should look at the PowerShell SDK. http://msdn.microsoft.com/en-us/library/windows/desktop/ms714469(v=vs.85).aspx. Also be aware that...
by jhicks
Tue Aug 14, 2012 9:03 am
Forum: PowerShell
Topic: WMI Methods
Replies: 4
Views: 2390

WMI Methods

You can also use the WMIClass accelerator. Result is basically the same.

[wmiclass]"Win32_Service" | select -expand methods | Select name
by jhicks
Fri Aug 03, 2012 2:35 am
Forum: PowerShell
Topic: Questions about Functions and variables
Replies: 15
Views: 6455

Questions about Functions and variables

Be careful, this is how nicknames start Spooky.
by jhicks
Thu Aug 02, 2012 11:49 pm
Forum: PowerShell
Topic: Too many users in the OU to count!
Replies: 9
Views: 5970

Too many users in the OU to count!

This works for me without any error. I'd also suggest writing an object to the pipeline instead of using Write-Host get-qadobject -type organizationalunit -searchroot $startou | foreach { $users=get-qaduser -SearchRoot $_.dn -SizeLimit 500 -PageSize 2000 New-Object psobject -Property @{OU=$_.Name;DN...
by jhicks
Thu Aug 02, 2012 1:07 am
Forum: PowerShell
Topic: Too many users in the OU to count!
Replies: 9
Views: 5970

Too many users in the OU to count!

There is a little quirk with the count property in PowerShell where if there is a single value you don't get anything. Use Measure-Object.

($users | measure-object).Count