How to remove specific item in INI file using PowerShell?Reading/writing an INI fileHow to run a PowerShell scriptHow do you comment out code in PowerShell?Perl: Iterating through INI filesDealing with quoted strings in .ini files (php and perl)how use break statement on powershell “switch -regex -file”?PowerShell: Looping through an .ini fileHow to read specific section of INI file in PowerShell?How do I get INI section file with Powershell by executing script in Command-Line?How to call specific function in PowerShell script form Command Line?

If someone else uploads my GPL'd code to Github without my permission, is that a copyright violation?

How do I get the =LEFT function in excel, to also take the number zero as the first number?

Can you use the Help action to give a 2019 UA Artillerist artificer's turret advantage?

What word best describes someone who likes to do everything on his own?

Why does putting a dot after the URL remove login information?

Is it double speak?

Onenote - Reducing Storage Footprint on PC

"In charge of" vs "Responsible for"

Is Odin inconsistent about the powers of Mjolnir?

Did silent film actors actually say their lines or did they simply improvise “dialogue” while being filmed?

Did Apollo leave poop on the moon?

12V lead acid charger with LM317 not charging

What is a Casino Word™?

Why should I "believe in" weak solutions to PDEs?

Is it a bad idea to offer variants of a final exam based on the type of allowed calculators?

Why is Chromosome 1 called Chromosome 1?

What are the examples (applications) of the MIPs in which the objective function has nonzero coefficients for only continuous variables?

Is it true that control+alt+delete only became a thing because IBM would not build Bill Gates a computer with a task manager button?

Colleagues speaking another language and it impacts work

How to help new students accept function notation

Does the length of a password for Wi-Fi affect speed?

Differentiability of operator norm

Traveling from Germany to other countries by train?

Are children a reason to be rejected for a job?



How to remove specific item in INI file using PowerShell?


Reading/writing an INI fileHow to run a PowerShell scriptHow do you comment out code in PowerShell?Perl: Iterating through INI filesDealing with quoted strings in .ini files (php and perl)how use break statement on powershell “switch -regex -file”?PowerShell: Looping through an .ini fileHow to read specific section of INI file in PowerShell?How do I get INI section file with Powershell by executing script in Command-Line?How to call specific function in PowerShell script form Command Line?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I want to remove specific item in my INI file.
My INI file



[Information]
Name= Joyce
Class=Elementry
Age=10


I want to remove Age=10



I tried this code, but I just can remove the value of Age which is 10.



Param(
[parameter(mandatory=$true)]$FilePath,
[parameter(mandatory=$true)] $a,
[parameter(mandatory=$true)] $b,
[parameter(mandatory=$true)] $c
)
Import-Module PsIni
$ff = Get-IniContent $FilePath
$ff["$a"]["$b"] = "$c"
$ff | Out-IniFile -FilePath $FilePath -Force


My Expectation output of INI file is:



[Information]
Name=Joyce
Class=Elementry









share|improve this question
























  • You are asking a lot of questions about ini files. Have you considered more modern approach and use JSON or XML instead?

    – vonPryz
    Mar 27 at 5:41

















1















I want to remove specific item in my INI file.
My INI file



[Information]
Name= Joyce
Class=Elementry
Age=10


I want to remove Age=10



I tried this code, but I just can remove the value of Age which is 10.



Param(
[parameter(mandatory=$true)]$FilePath,
[parameter(mandatory=$true)] $a,
[parameter(mandatory=$true)] $b,
[parameter(mandatory=$true)] $c
)
Import-Module PsIni
$ff = Get-IniContent $FilePath
$ff["$a"]["$b"] = "$c"
$ff | Out-IniFile -FilePath $FilePath -Force


My Expectation output of INI file is:



[Information]
Name=Joyce
Class=Elementry









share|improve this question
























  • You are asking a lot of questions about ini files. Have you considered more modern approach and use JSON or XML instead?

    – vonPryz
    Mar 27 at 5:41













1












1








1








I want to remove specific item in my INI file.
My INI file



[Information]
Name= Joyce
Class=Elementry
Age=10


I want to remove Age=10



I tried this code, but I just can remove the value of Age which is 10.



Param(
[parameter(mandatory=$true)]$FilePath,
[parameter(mandatory=$true)] $a,
[parameter(mandatory=$true)] $b,
[parameter(mandatory=$true)] $c
)
Import-Module PsIni
$ff = Get-IniContent $FilePath
$ff["$a"]["$b"] = "$c"
$ff | Out-IniFile -FilePath $FilePath -Force


My Expectation output of INI file is:



[Information]
Name=Joyce
Class=Elementry









share|improve this question














I want to remove specific item in my INI file.
My INI file



[Information]
Name= Joyce
Class=Elementry
Age=10


I want to remove Age=10



I tried this code, but I just can remove the value of Age which is 10.



Param(
[parameter(mandatory=$true)]$FilePath,
[parameter(mandatory=$true)] $a,
[parameter(mandatory=$true)] $b,
[parameter(mandatory=$true)] $c
)
Import-Module PsIni
$ff = Get-IniContent $FilePath
$ff["$a"]["$b"] = "$c"
$ff | Out-IniFile -FilePath $FilePath -Force


My Expectation output of INI file is:



[Information]
Name=Joyce
Class=Elementry






powershell ini






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 27 at 5:24









JobJob

949 bronze badges




949 bronze badges















  • You are asking a lot of questions about ini files. Have you considered more modern approach and use JSON or XML instead?

    – vonPryz
    Mar 27 at 5:41

















  • You are asking a lot of questions about ini files. Have you considered more modern approach and use JSON or XML instead?

    – vonPryz
    Mar 27 at 5:41
















You are asking a lot of questions about ini files. Have you considered more modern approach and use JSON or XML instead?

– vonPryz
Mar 27 at 5:41





You are asking a lot of questions about ini files. Have you considered more modern approach and use JSON or XML instead?

– vonPryz
Mar 27 at 5:41












1 Answer
1






active

oldest

votes


















1














Get-IniContent returns a (nested) ordered hashtable that represents the INI file's structure.



To remove an entry, you must therefore use the ordered hashtable's .Remove() method:



# Read the INI file into a (nested) ordered hashtable.
$iniContent = Get-IniContent file.ini

# Remove the [Information] section's 'Age' entry.
$iniContent.Information.Remove('Age')

# Save the updated INI representation back to disk.
$iniContent | Out-File -Force file.ini


You could therefore modify your script as follows:



Param(
[parameter(mandatory=$true)] $FilePath,
[parameter(mandatory=$true)] $Section,
[parameter(mandatory=$true)] $EntryKey,
$EntryValue # optional: if omitted, remove the entry
)

Import-Module PsIni

$ff = Get-IniContent $FilePath

if ($PSBoundParameters.ContainsKey('EntryValue'))
$ff.$Section.$EntryKey = $EntryValue
else
$ff.$Section.Remove($EntryKey)


$ff | Out-IniFile -FilePath $FilePath -Force


Then call it as follows; note the omission of a 4th argument, which requests removal of the entry:



.script.ps1 file.ini Information Age





share|improve this answer


























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55370321%2fhow-to-remove-specific-item-in-ini-file-using-powershell%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    Get-IniContent returns a (nested) ordered hashtable that represents the INI file's structure.



    To remove an entry, you must therefore use the ordered hashtable's .Remove() method:



    # Read the INI file into a (nested) ordered hashtable.
    $iniContent = Get-IniContent file.ini

    # Remove the [Information] section's 'Age' entry.
    $iniContent.Information.Remove('Age')

    # Save the updated INI representation back to disk.
    $iniContent | Out-File -Force file.ini


    You could therefore modify your script as follows:



    Param(
    [parameter(mandatory=$true)] $FilePath,
    [parameter(mandatory=$true)] $Section,
    [parameter(mandatory=$true)] $EntryKey,
    $EntryValue # optional: if omitted, remove the entry
    )

    Import-Module PsIni

    $ff = Get-IniContent $FilePath

    if ($PSBoundParameters.ContainsKey('EntryValue'))
    $ff.$Section.$EntryKey = $EntryValue
    else
    $ff.$Section.Remove($EntryKey)


    $ff | Out-IniFile -FilePath $FilePath -Force


    Then call it as follows; note the omission of a 4th argument, which requests removal of the entry:



    .script.ps1 file.ini Information Age





    share|improve this answer































      1














      Get-IniContent returns a (nested) ordered hashtable that represents the INI file's structure.



      To remove an entry, you must therefore use the ordered hashtable's .Remove() method:



      # Read the INI file into a (nested) ordered hashtable.
      $iniContent = Get-IniContent file.ini

      # Remove the [Information] section's 'Age' entry.
      $iniContent.Information.Remove('Age')

      # Save the updated INI representation back to disk.
      $iniContent | Out-File -Force file.ini


      You could therefore modify your script as follows:



      Param(
      [parameter(mandatory=$true)] $FilePath,
      [parameter(mandatory=$true)] $Section,
      [parameter(mandatory=$true)] $EntryKey,
      $EntryValue # optional: if omitted, remove the entry
      )

      Import-Module PsIni

      $ff = Get-IniContent $FilePath

      if ($PSBoundParameters.ContainsKey('EntryValue'))
      $ff.$Section.$EntryKey = $EntryValue
      else
      $ff.$Section.Remove($EntryKey)


      $ff | Out-IniFile -FilePath $FilePath -Force


      Then call it as follows; note the omission of a 4th argument, which requests removal of the entry:



      .script.ps1 file.ini Information Age





      share|improve this answer





























        1












        1








        1







        Get-IniContent returns a (nested) ordered hashtable that represents the INI file's structure.



        To remove an entry, you must therefore use the ordered hashtable's .Remove() method:



        # Read the INI file into a (nested) ordered hashtable.
        $iniContent = Get-IniContent file.ini

        # Remove the [Information] section's 'Age' entry.
        $iniContent.Information.Remove('Age')

        # Save the updated INI representation back to disk.
        $iniContent | Out-File -Force file.ini


        You could therefore modify your script as follows:



        Param(
        [parameter(mandatory=$true)] $FilePath,
        [parameter(mandatory=$true)] $Section,
        [parameter(mandatory=$true)] $EntryKey,
        $EntryValue # optional: if omitted, remove the entry
        )

        Import-Module PsIni

        $ff = Get-IniContent $FilePath

        if ($PSBoundParameters.ContainsKey('EntryValue'))
        $ff.$Section.$EntryKey = $EntryValue
        else
        $ff.$Section.Remove($EntryKey)


        $ff | Out-IniFile -FilePath $FilePath -Force


        Then call it as follows; note the omission of a 4th argument, which requests removal of the entry:



        .script.ps1 file.ini Information Age





        share|improve this answer















        Get-IniContent returns a (nested) ordered hashtable that represents the INI file's structure.



        To remove an entry, you must therefore use the ordered hashtable's .Remove() method:



        # Read the INI file into a (nested) ordered hashtable.
        $iniContent = Get-IniContent file.ini

        # Remove the [Information] section's 'Age' entry.
        $iniContent.Information.Remove('Age')

        # Save the updated INI representation back to disk.
        $iniContent | Out-File -Force file.ini


        You could therefore modify your script as follows:



        Param(
        [parameter(mandatory=$true)] $FilePath,
        [parameter(mandatory=$true)] $Section,
        [parameter(mandatory=$true)] $EntryKey,
        $EntryValue # optional: if omitted, remove the entry
        )

        Import-Module PsIni

        $ff = Get-IniContent $FilePath

        if ($PSBoundParameters.ContainsKey('EntryValue'))
        $ff.$Section.$EntryKey = $EntryValue
        else
        $ff.$Section.Remove($EntryKey)


        $ff | Out-IniFile -FilePath $FilePath -Force


        Then call it as follows; note the omission of a 4th argument, which requests removal of the entry:



        .script.ps1 file.ini Information Age






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 27 at 8:12

























        answered Mar 27 at 7:13









        mklement0mklement0

        152k25 gold badges272 silver badges314 bronze badges




        152k25 gold badges272 silver badges314 bronze badges





















            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55370321%2fhow-to-remove-specific-item-in-ini-file-using-powershell%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

            밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

            1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴