Windows 11 Migration Installation Instructions

Minimum Version

This DEX Pack requires SysTrack version 10.1 or higher.

Notes

  • If you select groups with a large amount of systems, it may impact dashboard performance. Consider working with smaller groups of systems to asses.

  • After this DEX Pack is installed, it may take up to 24 hours for data to appear.

  • If you update or reinstall this DEX Pack, you must reassign any Views created below to the SF_Windows 11 Migration Role.

  • If you update or reinstall this DEX Pack, you need to overwrite the old view SQL with the new SQL.

  • This DEX Pack relies on a Collection Extension to collect readiness data. If you find missing data for systems, verify the Collection Extension can be successfully run on the system.

  • This pack makes use of a Collection Extension which contains a PowerShell script. When the agent is run it will attempt to bypass execution policies; if this is not possible the data required will not be collected.

Import Kit

To use this DEX Pack, the corresponding Kit must be imported to SysTrack.

If you have already imported the DEX Pack directly from the Kits page, the Import Kit step is complete. You may move on to the next step.

If you are viewing this DEX Pack in the Customer Gateway, follow these steps to import this DEX Pack Kit:

  1. On the DEX Pack page, download the DEX Pack ZIP file

  2. In SysTrack, open Kits

  3. Under Local, click Select Kit File

  4. Select the DEX Pack ZIP File

Enable Collection Extensions

  1. Verify you have unlocked the tenant next to your username.

  2. In Configure, click Collection Extensions on the left.

  3. Click Action Governance

  4. Find Win11HardwareReadiness

  5. Check the Approved box and verify the Enabled check box is also activated.

  6. Click Save Changes at the top right.

Windows 11 Migration View

The Windows 11 Migration DEX Pack requires you to make a View for the SF_Windows 11 Migration Role.

To create the new View:

  1. Navigate to Configure > Views

  2. Click the padlock icon in the upper-right to enable editing

  3. Click the plus icon to add a new View

  4. Fill in the Settings as follows:

    1. View Name: SF_WIN11

    2. Expires in: 30 Minutes

    3. When Expired: Overwrite Data

    4. Do not check When overdue by 1 day(s)

    5. Set the Refresh drop-downs to Daily, Inside, 24x7, and Every Day

    6. Copy this SQL query, and paste it into the box under SQL Selection > Generic

    7. Click Test SQL. A Test Success message should appear. If the test is not successful, the query may have been copied incorrectly

  5. Click Create View at the top-right

To assign the new View:

  1. Navigate to Configure > Roles

  2. Use the drop-down at the top to select the SF_Windows 11 Migration

  3. Click Views, then check the box next to SF_WIN11

  4. Click Save Changes at the top-right.

After this View is assigned, Screen Time data will be collected each day. It will take 30 days before the data in this Dashboard is fully populated.

Copy SF_WIN11

Copy
SELECT
    T0.WGUID,
    GETUTCDATE() AS VWTIME,
    T1.CHANGETIME AS WIN11MIGRATEDATE,
    T1.OLDOS,
    T1.OLDBUILD,
    T3.processor,
    T3.secureBoot,
    T3.TPM
FROM SASCFG AS T0
INNER JOIN SASTR AS S0 ON T0.OSNAME = S0.STRINGID
LEFT JOIN (
    SELECT
        T0.WGUID,
        MAX(T0.CHANGETIME) AS CHANGETIME,
        MAX(CASE WHEN S1.STRVALUE = 'OSNAME' THEN T0.OLDVALUE ELSE NULL END) AS OLDOS,
        MAX(CASE WHEN S1.STRVALUE = 'OSBUILDNUM' THEN T0.OLDVALUE ELSE NULL END) AS OLDBUILD
    FROM (SACHANGES AS T0
    INNER JOIN SASTR AS S0 ON T0.TABLENAME = S0.STRINGID)
    INNER JOIN SASTR AS S1 ON T0.FIELDNAME = S1.STRINGID
    WHERE
        S0.STRVALUE = 'SASCFG'
        AND S1.STRVALUE IN ('OSNAME','OSBUILDNUM')
        AND T0.CHANGETYPE = 2
    GROUP BY T0.WGUID
    HAVING MAX(CASE WHEN S1.STRVALUE = 'OSNAME' THEN T0.NEWVALUE ELSE NULL END) LIKE 'Microsoft Windows 11%'
) AS T1 ON T0.WGUID = T1.WGUID
LEFT JOIN DYNI_Win11HardwareReadiness AS T3 ON T0.WGUID = T3.WGUID
WHERE
    S0.STRVALUE LIKE 'Microsoft Windows%'
    AND S0.STRVALUE NOT LIKE 'Microsoft Windows Server%'

Windows 11 Migration Role

This DEX Pack requires you to assign the SF_Windows 11 Migration Role to the relevant Configurations:

  1. Navigate to Configure > Configurations

  2. Click the padlock icon in the upper-right to enable editing

  3. Use the drop-down at the top to select a relevant Configuration, or create a new Configuration

  4. Assign SF_Windows 11 Migration Role to the Configuration by dragging it from Available Roles to Assigned Roles

  5. Click Save Changes at the top-right

  6. It may take up to 24 hours for systems to check in and update their configuration.