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 8391349
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T19:14:14+00:00 2026-06-09T19:14:14+00:00

I have a configuration setting in web. config file as follows: <param name=url value=http://localhost/services.msc>

  • 0

I have a configuration setting in web. config file as follows:

<param name="url" value="http://localhost/services.msc">

I want to write a batch file using powershell to replace value=”http://localhost/services.msc&#8221;
with port number as value=”http://localhost:808/services.msc&#8221;

Is it possible to replace one text with another?

  • 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-06-09T19:14:16+00:00Added an answer on June 9, 2026 at 7:14 pm

    There are several ways to do this. My favorite way to modify any XML file if I know the value I’m trying to modify is to cast the content as XML, find the setting right where I know it to be, to modify it, and then to set the content of the config file to what I now have in powershell. An example is below. To find the exact value I usually take the item above it and pipe it to | fl until I get exactly what I’m looking at. You can read the XML and get the info probably alot easier.

    #Make sure you set the webconfigpath variable.  
    #Make sure you know your keyname and where to find it in the XML doc.
    $webConfig = [xml](Get-Content -path $webConfigPath)
    $setting = $webConfig.configuration.appSettings.add | ?{$_.key -eq "KeyName"}
    $setting.Value = "NewValue"
    $webConfig.save($webConfigPath)
    

    This may be something that can be changed with the Set-WebConfigurationProperty cmdlet, but I’m not sure and haven’t used it personally.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I have a specific setting in web.config, say the session state configuration, and
Is there a way to have the main .net configuration file app.config/web.config include another
As the article ASP.NET Configuration File Hierarchy and Inheritance says the Web.config file for
My client insists not to store prone-to-change configuration settings in the Web.Config file for
I have a web application with over 200 configuration settings. These control everything from
I have configuration values saved in an app.config . I want to create a
I'm working in xmldataprovider and we have configuration value source this value may be
So I have the following situation. I have a configuration class config.py that holds
I have web application and and DB connection settings are stored in web.config The
As all .net developers know its possible to encrypt values in web.config. I have

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.