Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6584119
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T16:29:50+00:00 2026-05-25T16:29:50+00:00

I’m trying to set up a powershell script to go fetch an encryption key.

  • 0

I’m trying to set up a powershell script to go fetch an encryption key. The company puts it out on a website and expects us to manually go get it every 6 months, but well, I’m lazy and forgetful. So I wrote a script to do it for me which I’ll schedule to run every 3 months or so. Here is what I have so far:

$url ="http://www.theirwebsite.com/pgp/corp07272011Public.asc"
$client = new-object System.Net.WebClient
$proxy = New-Object System.Net.WebProxy("http://OurProxy:80")
$proxy.UseDefaultCredentials = $true
$client.proxy = $proxy
$client.DownloadFile( $url, ".\CorpPublicKey.asc" )

And that works for their current key. BUT, the file I’m downloading uses the date as part of it’s name. When 7/27/2011 rolls around, presumably the new key will be named after 1/27/2011, or something similar.

So this may be a simple .NET issue, but how do I find what files are out on a website? Or is there an entirely better way to go about this?

EDIT: ok, one tidbit that I didn’t mention is that this file is linked to on a known website. Soooo… Theoretically I could parse the webpage for the link, and use that to find the filename. I’ll post the code when/if I get it all sorted out.

EDIT, part Deux
So I figured this one out.

1) You can’t simply list the files out on a webserver. This is why webmasters publish file trees. Alternatively you have a spider crawl through all the links on a site.

2) Knowing that there was always going to be a link on the website to my target, I fetch the webpage, find the link/filename, and can then go download the file.

3) The proper way of doing this is to parse it into xml and then search the anchor tags for my link with Xpath or something.

4) But that’s annoying so I just regexed for the .asc file and called it done.

$url ="http://www.theirwebsite.com/pgp/"
$client = new-object System.Net.WebClient
$proxy = New-Object System.Net.WebProxy("http://ourproxy:80")
$proxy.UseDefaultCredentials = $true
$client.proxy = $proxy
$webstring = $client.DownloadString( $url) 
$webstring -match "aspecifcname.*asc"
$matches[0]
$url ="http://www.theircompany.com/pgp/" + $matches[0]
"url: " + $url
#Huh, we need to use the full path for downloading this file. .\ didn't cut it
$client.DownloadFile( $url, "C:\Program Files (x86)\theirCompany\savedKey.asc" )
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T16:29:51+00:00Added an answer on May 25, 2026 at 4:29 pm

    Answering just so there isn’t unanswered questions hanging out there.

    So I figured this one out.
    1) You can’t simply list the files out on a webserver. This is why webmasters publish file trees. Alternatively you have a spider crawl through all the links on a site.
    2) Knowing that there was always going to be a link on the website to my target, I fetch the webpage, find the link/filename, and can then go download the file.
    3) The proper way of doing this is to parse it into xml and then search the anchor tags for my link with Xpath or something.
    4) But that’s annoying so I just regexed for the .asc file and called it done.

    $url ="http://www.theirwebsite.com/pgp/"
    $client = new-object System.Net.WebClient
    $proxy = New-Object System.Net.WebProxy("http://ourproxy:80")
    $proxy.UseDefaultCredentials = $true
    $client.proxy = $proxy
    $webstring = $client.DownloadString( $url) 
    $webstring -match "aspecifcname.*asc"
    $matches[0]
    $url ="http://www.theircompany.com/pgp/" + $matches[0]
    "url: " + $url
    #Huh, we need to use the full path for downloading this file. .\ didn't cut it
    $client.DownloadFile( $url, "C:\Program Files (x86)\theirCompany\savedKey.asc" )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I am trying to loop through a bunch of documents I have to put
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm trying to use string.replace('’','') to replace the dreaded weird single-quote character: ’ (aka
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.