Добавить или удалить текст из текстового файла с помощью PowerShell - PullRequest
0 голосов
/ 16 ноября 2011

Я использую PowerShell для добавления или удаления текста из файла. Я продолжаю получать забавный текст в моем файле.

Это происходит только тогда, когда я удалил строку из текстового файла и когда я пытаюсь добавить новую строку, я получаю забавный текст.

cls
IMPORT-MODULE ActiveDirectory

$fileLocation = "E:\Script\MatchCadTest\ptc.opt";

function addUser( $username=''){

    $user = Get-ADUser -Identity $username -ErrorAction SilentlyContinue;
    $userFullName = $user.Name;
    $empty = [string]::IsNullOrEmpty($userFullName);

    if ( !($empty) ){
        $userExisted = Get-Content $fileLocation | Select-String "$username" -quiet

        if( ! $userExisted ){
            $newLocation =  "E:\Script\MatchCadTest\backup\";

            if((Test-Path -Path $fileLocation)) {
               Copy-Item "$fileLocation" "$newLocation"
            }

            $date = Get-Date -Format "d-M-y Hms";
            $newName = "ptc_$date.opt"
            Rename-Item "$newLocation\ptc.opt" $newName

            # Add-Content $fileLocation ""
            Add-Content  -Path $fileLocation -Value "# $userFullName";
            Add-Content  -Path $fileLocation -Value "INCLUDE MATHCAD USER $username";

            Write-Host "User has been added to file. Please restart the service." -BackgroundColor Green -ForegroundColor Black
        }
        else{
            Write-Host "User already existed" -BackgroundColor Red -ForegroundColor White
        }
    }
}

function removeUser( $username=''){
    $user = Get-ADUser -Identity $username -ErrorAction SilentlyContinue;
    # $user
    $userFullName = $user.Name;
    $empty = [string]::IsNullOrEmpty($userFullName);

    if ( !($empty) ){
        $userExisted = Get-Content $fileLocation | Select-String "$username" -quiet
        if( $userExisted ){
            $remove="# $userFullName";
            $removeUser = (Get-Content $fileLocation);
            $removeUser | where {$_ -ne $remove};

            $remove="INCLUDE MATHCAD USER $username";
            $removeUser | where {$_ -ne $remove}

            $removeUser |Out-File $fileLocation;

            #$removeUser = (Get-Content $fileLocation) | where {$_ -ne $remove} | Out-File $fileLocation;

            #$content = Get-Content $fileLocation
            #$content | Foreach {$_.TrimEnd()} | Set-Content $fileLocation

            Write-Host "User removed" -BackgroundColor Green -ForegroundColor Black
        }
        else{
            Write-Host "User does not existed" -BackgroundColor Red -ForegroundColor White
        }
    }
    else{
        Write-Host "User not found in ad" -BackgroundColor Red -ForegroundColor White
    }
}


$option=''
while ( $option -ne 0){

    Write-Host "What would you like to do?"
    Write-Host "1= Add new user"
    Write-Host "2=  Remove user"
    Write-Host "0= No (Exit)"

    $option = Read-Host "Select option"
    $username = Read-Host "Please enter Username"
    if( $option -eq 0 ){
        exit 1
    }

    elseif( $option -eq 1){
        addUser($username);
    }
    elseif ( $option -eq 22){
        removeUser ($username);
    }

    else{
        cls
        Write-Host
        Write-Host " Invaild Choice  " -BackgroundColor Red #-ForegroundColor White
        Write-Host
    }

    #Reset
    $option=444;
    $username="";
    $userFullName="";
    $user="";
    $empty="";
}

Когда я удаляю строку текста из файла и добавляю нового пользователя, это все смешная текстовая строка:

См. Ниже

‣ 潍 慨 浭 摡 䴠 橡 摩 ਍ 义 䱃 䑕 ⁅ 䅍 䡔 䅃 / 单 剅 洠 ㅭ 㘳 㐰 ല

У меня есть текстовый файл со следующей информацией.

- // Full name 1
- User ID of User 1

- // Full name 2
- User ID of User 2

* // Full name 3
* User ID of User 3

* // Full name 4
* User ID of User 4

* // Full name 5
* User ID of User 5

* // Full name 6
* User ID of User 6

* // Full name 7
* User ID of User 7

* // Full name 8
* User ID of User 8

Если вы видите, что у пользователей 5 и 6 или 7 и 8 есть дополнительное пространство, которое я не буду удалять, и просто добавлю пространство.

1 Ответ

0 голосов
/ 16 ноября 2011

Я думаю, вам нужно установить кодировку для вашего Add-Content

Попробуйте: Add-Content -Encoding UTF8 -Path $fileLocation -Value "# $userFullName";

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...