Search found 15436 matches

by jvierra
Fri Jan 01, 2010 11:49 pm
Forum: VBScript
Topic: check computername
Replies: 25
Views: 7072

check computername

You cannot start remote appliactions. YOu can only start remote services. If you are lookiong for someone to write scripts for you on request this is not the right place. ScriptingAnswers is for assistance with scripting issues fro admins and assistance tothose trying to learn how to script. Please ...
by jvierra
Thu Dec 31, 2009 5:08 am
Forum: VBScript
Topic: Update a Sharepoint list using VBSCRIPT via Web Se
Replies: 23
Views: 21072

Update a Sharepoint list using VBSCRIPT via Web Se

Here is the easiest method for upadting lists on a Sharepoint site. It uses PowerShell as this is the most relaible method for all sharepoint server installations and bypasses configuration issues with customdeployments and Small Business Server url redirection. [System.Reflection.Assembly]::LoadWit...
by jvierra
Thu Dec 31, 2009 2:59 am
Forum: VBScript
Topic: Update a Sharepoint list using VBSCRIPT via Web Se
Replies: 23
Views: 21072

Update a Sharepoint list using VBSCRIPT via Web Se

I di d some testing. The methods - any - will not work on SPS on SBS 2003 or later due to redirects. You will need to alter web.config to make this work and I don't recommend it if you are not well versed in manageing SPS.
by jvierra
Wed Dec 30, 2009 7:41 pm
Forum: PowerShell
Topic: Trap wmi exception
Replies: 4
Views: 2074

Trap wmi exception

I believe you need to do this...

$objPing = Get-WmiObject Win32_PingStatus -Filter ("Address='" +$strFullIPAddr+ "'") -ErrorAction silentlycontinue
by jvierra
Wed Dec 30, 2009 7:36 pm
Forum: VBScript
Topic: Update a Sharepoint list using VBSCRIPT via Web Se
Replies: 23
Views: 21072

Update a Sharepoint list using VBSCRIPT via Web Se

I see you have posted your request all over the web. If you had goiogles your request you would have immediately found that it cannot readily be done inscript. This is one solution: http://www.codeproject.com/KB/vbscript/WebServiceProxyGenerator.aspx It provide the required library code tobuild a pr...
by jvierra
Wed Dec 30, 2009 7:28 pm
Forum: VBScript
Topic: Oversized PST Alert
Replies: 9
Views: 3742

Oversized PST Alert

Sorry but I am very busy on another project. I suggest starting with a book on scripting. I think you would be able to figure this out once you have some of the basics. You are trying to mix two incompatible techniques that you have copied from various places. The file size was given in the solution...
by jvierra
Wed Dec 30, 2009 7:15 pm
Forum: VBScript
Topic: Update a Sharepoint list using VBSCRIPT via Web Se
Replies: 23
Views: 21072

Update a Sharepoint list using VBSCRIPT via Web Se

YOu need the address of teh web service and the WSDl for teh web service.

YOu will not be able to do this with VBScript but it might be posible with PowerShell.

by jvierra
Wed Dec 30, 2009 5:26 pm
Forum: VBScript
Topic: Oversized PST Alert
Replies: 9
Views: 3742

Oversized PST Alert

Just add the d drive as a filter to the query.

Drive='D:'

by jvierra
Wed Dec 30, 2009 5:04 pm
Forum: VBScript
Topic: Update a Sharepoint list using VBSCRIPT via Web Se
Replies: 23
Views: 21072

Update a Sharepoint list using VBSCRIPT via Web Se

I have no idea of what you are trying to do. YOu need to write some script and someone here can help you fix errors or find out what is needed.

From your post there is no way to know what you want to do.
by jvierra
Wed Dec 30, 2009 4:39 pm
Forum: VBScript
Topic: Oversized PST Alert
Replies: 9
Views: 3742

Oversized PST Alert

Use WMI Cim_Datafile class to search drive. Try it on the local machine and you willsee how long this takes. On one of my small machines withone 40 Gb drive this takes about 30 minutes. On another with 4 drives it takes about 4 hours. YOu could also use a VBA app module form Outlook to have Outlook ...