Skip to content

Commit c2fb8f7

Browse files
authored
UWP fix (#132) (#133)
1 parent 27d4172 commit c2fb8f7

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

Deploy/uwp_jcadmu.ps1

4.89 KB
Binary file not shown.

ModuleChangelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 2.7.4
2+
3+
Release Date: August 14, 2024
4+
5+
#### RELEASE NOTES
6+
7+
#### Bug Fixes:
8+
9+
```
10+
* Fixed an freezing issue with UWP app/form when interacted
11+
* Updated useragent text
12+
```
113
## 2.7.3
214

315
Release Date: July 25, 2024

jumpcloud-ADMU/JumpCloud.ADMU.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
# Version number of this module.
1515

16-
ModuleVersion = '2.7.3'
16+
ModuleVersion = '2.7.4'
1717

1818
# Supported PSEditions
1919
# CompatiblePSEditions = @()

jumpcloud-ADMU/Powershell/Form.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ function show-mtpSelection {
153153
<Window
154154
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
155155
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
156-
Title="JumpCloud ADMU 2.7.3"
156+
Title="JumpCloud ADMU 2.7.4"
157157
WindowStyle="SingleBorderWindow"
158158
ResizeMode="NoResize"
159159
Background="White" ScrollViewer.VerticalScrollBarVisibility="Visible" ScrollViewer.HorizontalScrollBarVisibility="Visible" Width="1020" Height="590">

jumpcloud-ADMU/Powershell/ProgressForm.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function New-ProgressForm {
3737
<Window
3838
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3939
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
40-
Name="Window" Title="JumpCloud ADMU 2.7.3"
40+
Name="Window" Title="JumpCloud ADMU 2.7.4"
4141
WindowStyle="SingleBorderWindow"
4242
ResizeMode="NoResize"
4343
Background="White" Width="720" Height="550 ">

jumpcloud-ADMU/Powershell/Start-Migration.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1883,12 +1883,12 @@ Function Start-Migration {
18831883
$AGENT_INSTALLER_URL = "https://cdn02.jumpcloud.com/production/jcagent-msi-signed.msi"
18841884
$AGENT_INSTALLER_PATH = "$windowsDrive\windows\Temp\JCADMU\jcagent-msi-signed.msi"
18851885
$AGENT_CONF_PATH = "$($AGENT_PATH)\Plugins\Contrib\jcagent.conf"
1886-
$admuVersion = '2.7.3'
1886+
$admuVersion = '2.7.4'
18871887

18881888
$script:AdminDebug = $AdminDebug
18891889
$isForm = $PSCmdlet.ParameterSetName -eq "form"
18901890
If ($isForm) {
1891-
$useragent = "JumpCloud.ADMU_Application/$($admuVersion)"
1891+
$useragent = "JumpCloud_ADMU.Application/$($admuVersion)"
18921892
Write-ToLog -Message:("UserAgent: $useragent")
18931893
$SelectedUserName = $inputObject.SelectedUserName
18941894
$SelectedUserSid = Test-UsernameOrSID $SelectedUserName
@@ -1940,7 +1940,7 @@ Function Start-Migration {
19401940
$ForceReboot = $InputObject.ForceReboot
19411941
$UpdateHomePath = $inputObject.UpdateHomePath
19421942
} else {
1943-
$useragent = "JumpCloud_ADMU.PowershellModule/$($admuVersion)"
1943+
$useragent = "JumpCloud_ADMU.Powershell/$($admuVersion)"
19441944
Write-ToLog -Message:("UserAgent: $useragent")
19451945
$SelectedUserSid = Test-UsernameOrSID $SelectedUserName
19461946
}

0 commit comments

Comments
 (0)