Skip to content

Commit

Permalink
Version 1.0.3.0
Browse files Browse the repository at this point in the history
Merge pull request #11 from AndiBellstedt/Development
  • Loading branch information
AndiBellstedt authored Mar 11, 2023
2 parents f892e55 + c4bd0cd commit ced062b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion WinEventLogCustomization/WinEventLogCustomization.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
RootModule = 'WinEventLogCustomization.psm1'

# Version number of this module.
ModuleVersion = '1.0.2.2'
ModuleVersion = '1.0.3.0'

# ID used to uniquely identify this module
GUID = '9268705a-75d5-401c-b13d-4d1a8f380b17'
Expand Down
Binary file modified WinEventLogCustomization/bin/WinEventLogCustomization.dll
Binary file not shown.
Binary file modified WinEventLogCustomization/bin/WinEventLogCustomization.pdb
Binary file not shown.
7 changes: 7 additions & 0 deletions WinEventLogCustomization/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Changelog
## 1.0.3.0 (2023-03-11)
- New: ---
- Upd: ---
- Fix:
- Register-WELCEventChannelManifest: Fix bug with session handling for registering manifests on remote systems
- General: Fix integer overflow on WELC.ChannelConfig objects to allow Excel import of eventlog channel configurations with size attribute larger than 1 GB

## 1.0.2.2 (2023-02-11)
- New: ---
- Upd: ---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,13 +256,18 @@
}

# Transfer files
Copy-Item -ToSession $Session -Destination $DestinationPath -Force -Path $file
Copy-Item -ToSession $Session -Destination $DestinationPath -Force -Path $dllFiles
foreach ($sessionItem in $Session) {
Copy-Item -ToSession $sessionItem -Destination $DestinationPath -Force -Path $file
Copy-Item -ToSession $sessionItem -Destination $DestinationPath -Force -Path $dllFiles
}
}
} elseif ((split-path $file) -notlike $DestinationPath) {
Write-PSFMessage -Level Verbose -Message "Going to copy file into destination '$($DestinationPath)'"
Copy-Item -Destination $DestinationPath -Force -Path $file
Copy-Item -Destination $DestinationPath -Force -Path $dllFiles

if ($pscmdlet.ShouldProcess("Manifest '$($file)' and dll to path '$($DestinationPath)'", "Copy")) {
Copy-Item -Destination $DestinationPath -Force -Path $file
Copy-Item -Destination $DestinationPath -Force -Path $dllFiles
}
}

# Register manifest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class ChannelConfig {
/// <summary>
///
/// </summary>
public System.Int32 MaxEventLogSize;
public System.Int64 MaxEventLogSize;
}


Expand Down

0 comments on commit ced062b

Please sign in to comment.