As an aside, provided what I'm asking above can't be done, I found this
powershell snippet which will log me in first:
$ie = New-Object -com internetexplorer.application;
$url = "<DashboardURL>/SimpleUserLogin.aspx"
$ie.visible = $false;
$ie.navigate($url);
while ($ie.Busy -eq $true)
{
Start-Sleep -Milliseconds 1000;
}
$ie.Document.getElementById("userName").value = "<username>"
$ie.Document.getElementById("password").value = "<password>"
$btn = $ie.Document.getElementsByTagName("input") | ? {$_.type -eq
"submit"}
$btn.click()
while ($ie.Busy -eq $true)
{
Start-Sleep -Milliseconds 1000;
}
Then you navigate to your URL to force the build. Still thanks in advance
if anyone can give me a shorter way.
--
---
You received this message because you are subscribed to the Google Groups
"ccnet-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.