1. Windows 10 User

    Windows 10 User MDL Guru

    Feb 2, 2017
    2,005
    122
    90
    #16221 Windows 10 User, Aug 27, 2020
    Last edited: Sep 24, 2023
    An app called "PrintDialog" doesn't appear on the Apps & features list but it does on CCleaner's. What does this app do and may I remove it? If I try to remove it on CCleaner, nothing happens.
     
  2. x33st0rm

    x33st0rm MDL Novice

    Dec 25, 2016
    7
    0
    0
    I have W10 Education, and wonder if there's any way to get the ISO other than the M$ downloader? Now that Digital River is gone.
    It contains no info prior to downloading, so i only know what i'm downloading once it's on the computer and i use other software to check what it is. Tried twice to get v2004, before i finally got it, but don't know if any new updates embedded in the ISO have come out.
     
  3. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    [25] Sticky Notes App ^| Depends on: Windows Store

     
  4. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Of course there are wow64 entries in WSIM, but I just don't use them.

     
  5. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Please don't remove all available apps or components, Print Dialog is used get show modern Printing Dialog box under UWP Apps.

     
  6. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    #16227 inTerActionVRI, Aug 27, 2020
    Last edited: Aug 27, 2020
    I had forgotten to mention it earlier, now that the subject came up, I remembered.

    It doesn't open for me either. Even though the Windows Store is present. It opens and then closes.

    But it was tested on Images (19H2 and 20H1) made in Toolkit 10.2.
    First test maintaining the Store and Sticky Notes;
    Second test maintaining the Store and installing Sticky Notes through it.

    But the result is are the same.
    It opens and then closes.
     
  7. 正义羊

    正义羊 MDL Senior Member

    Feb 21, 2016
    258
    152
    10
    #16228 正义羊, Aug 28, 2020
    Last edited: Aug 29, 2020
    @MSMG ,For the Windows 10 Version 2009,it's Version 20H2,not v2009.
    In Toolkit 10.3 lines 19943 - 19946:
    Code:
    if "%SelectedSourceOS%" equ "w10" if "%ImageBuild%" equ "19042" if "%ImageServicePackBuild%" lss "208" (
     echo.ToolKit component removal only work with the below Source OS Images...
     echo.
     echo.Windows 10 v2009 ^(10.0.19042.208^) Source OS.
     goto :Stop
    1.No Windows 10 v2009,it's Windows 10 v20H2
    2.For ImageServicePackBuild,in Windows 10 v20H2,it start in 330 or 264,not 208

    In Toolkit 10.3 lines 19920 - 19924:
    Code:
    if "%SelectedSourceOS%" equ "w10" if "%ImageBuild%" equ "18362" if "%ImageServicePackBuild%" lss "418" (
     echo.ToolKit component removal only work with the below Source OS Images...
     echo.
     echo.Windows 10 v1903 ^(10.0.18362.418^) Source OS.
     goto :Stop

    For ImageServicePackBuild,in Windows 10 v1903,its start in 30,not 418.
    418 is v1909 ImageServicePackBuild start.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    #16229 inTerActionVRI, Aug 28, 2020
    Last edited: Aug 28, 2020
    Considering the friend's post @"正义羊, I thought that the number of digits may have been the cause of the problem.

    Right in that part I replaced the values of the ImageServicePackBuild with the ones from the last cumulative updates, but I think I generated more problems, in the "custom toolkit".
    I had said that the "component removal menu does not appear" problem for ISO sources integrated with the latest cumulative updates has been fixed. But today, I saw that the problem is that there are 4 figures in the last 19H2 build released. It's ImageServicePackBuild 1016.
    To correct it, I just added a 0 before 418 after the "lss" argument, making it like this: 0418. Using the "less than = lss" argument, only the first digits were being read. That is, the number 101 is read, instead of 1016.

    ===============================================================================
    MSMG ToolKit - Source Menu
    ===============================================================================

    Source OS has already been selected..

    ===============================================================================

    Image : Install.wim
    Image Name : Windows 10 Pro
    Image Description : Windows 10 Pro
    Image Architecture : x64
    Image Version : 10.0.18363
    Image Service Pack Build : 1016
    Image Service Pack Level : 0
    Image Build : 18363
    Image Edition : Core
    Image Flag : Core
    Image Installation Type : Client
    Image Default Language : en-US

    ===============================================================================
    ===============================================================================
    MSMG ToolKit - Remove Windows Components
    ===============================================================================

    ToolKit component removal only work with the below Source OS Images...

    Windows 10 v1909 (10.0.18363.418) Source OS.

    ===============================================================================
    Code:
    :: Checking whether the selected Source OS is a Windows 10 v1903 Client Edition
    if "%SelectedSourceOS%" equ "w10" if "%ImageBuild%" equ "18362" if "%ImageServicePackBuild%" lss "0030" (
       echo.ToolKit component removal only work with the below Source OS Images...
       echo.
       echo.Windows 10 v1903 ^(10.0.18362.30^) Source OS.
       goto :Stop
    )
    
    :: Checking whether the selected Source OS is a Windows 10 v1909 Client Edition
    if "%SelectedSourceOS%" equ "w10" if "%ImageBuild%" equ "18363" if "%ImageServicePackBuild%" lss "0418" (
       echo.ToolKit component removal only work with the below Source OS Images...
       echo.
       echo.Windows 10 v1909 ^(10.0.18363.418^) Source OS.
       goto :Stop
    )
    
    Note: I believe that this correction is only palliative, as it may work for builds below 18362.30 and below 18363.418, since for 2-digit builds the number 00 will be read instead of 0030 and for 3-digit builds the number 030 will be read and 041 instead of 0030 and 0418.

    So, new custom toolkit in a moment.
     
  9. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    #16230 inTerActionVRI, Aug 28, 2020
    Last edited: Oct 3, 2020
    https://forums.mydigitallife.net/threads/msmg-toolkit.50572/page-793#post-1606110

    Sent an 2020-08-28 updated file in the post above.


    Paliative improvements to fix the removal menu doesn't show there options for ISO sources integrated with new cumulative updates:
    18362.1016
    18363.1016

    Merged with new MSMG Toolkit 10.3

    Added: Show info in Source Menu when you have already selected your source.

    Merged with new Toolkit 10.2


    Some improvments:

    When you selected any option to remove all components and decided to return by answering "no" for some reason. You would always return to the Main Menu. In the Custom Toolkit when you answer "no" you are returned to the menu you were in.

    In previous Custom Toolkits I couldn't see a way to maintain the Original "Apply Tweaks Menu" without increasing the code size.

    But thanks to the changes that @MSMG made in the new version, it opened my eyes and I managed to put both menus. The original "Apply Tweaks Menu" back and the "Custom Apply Tweaks Menu".

    The problem was that when deciding to apply a tweak individually, fall into the system of applying all tweaks by answering questions. But now this is fixed.

    There was an error with an extra quote in the Edge removal lines, for some Custom Removal to make Specific Editions. First I thought about correcting it just by removing the extra quote. But I changed my mind and simply put it to remove the Edge directly on the command line to remove multiple components at once.

    I decided to make some changes mainly in the "Gamer Edition" (more components removed that can be added through the Windows Store), so I made changes in the other "Custom Editions" as well. But not in the "Accessibility Edition".

    I put some pauses in the custom integration steps "Integrate Custom Selection 8 7 6 5" so that you can see what happens.

    Fixed a registry error in my custom tweaks and added suggestions for use in the Windows Store, automatic installations in silent mode disabled. Autodownload - Update for installed apps enabled

    Code:
    ...
           if "%Component%" equ "PrivacyComponents" (
               %ToolKitHelper% "%InstallMount%\%%i" AssignedAccess;CEIP_SQM;FaceRecognition;KernelDebugging;LocationService;PicturePassword;PinEnrollment;UnifiedTelemetryClient;WiFiNetworkManager;WindowsInsiderHub
               if "%ImageBuild%" equ "17763" %ToolKitHelper% "%InstallMount%\%%i" WindowsErrorReporting
               if "%ImageBuild%" geq "18362" if "%ImageBuild%" leq "18363" %ToolKitHelper% "%InstallMount%\%%i" WindowsErrorReporting
               if "%ImageBuild%" equ "19041" %ToolKitHelper% "%InstallMount%\%%i" WindowsErrorReporting
               if "%ImageBuild%" equ "19042" %ToolKitHelper% "%InstallMount%\%%i" WindowsErrorReporting
           )
    )else(
           if "%Component%" equ "PrivacyComponents" (
               %ToolKitHelper% "%InstallMount%" AssignedAccess;CEIP_SQM;FaceRecognition;KernelDebugging;LocationService;PicturePassword;PinEnrollment;UnifiedTelemetryClient;WiFiNetworkManager;WindowsInsiderHub
               if "%ImageBuild%" equ "17763" %ToolKitHelper% "%InstallMount%" WindowsErrorReporting
               if "%ImageBuild%" geq "18362" if "%ImageBuild%" leq "18363" %ToolKitHelper% "%InstallMount%" WindowsErrorReporting
               if "%ImageBuild%" equ "19041" %ToolKitHelper% "%InstallMount%" WindowsErrorReporting
               if "%ImageBuild%" equ "19042" %ToolKitHelper% "%InstallMount%" WindowsErrorReporting
           )
    )
    

    Windows Error Reporting is needed for OOBE for v1903 / v1909 OS.
    This component has been reinserted and will pass again, according to specific conditions, to be automatically removed by the "Editions Custom Selection Removal Script" options available in CustomToolkit. Conditions prevent removal on versions v1903 / v1909.

    Only for:
    Remove All Privacy Components
    Accessibility Edition
    Lite Edition
    Xtreme Lite Edition
    Content Delivery Manager is needed for OOBE for v1809 / v1903 / v1909 / v2004 / v2009 OS.
    For this Component, if you want, just access the "Remove System Components Menu" to remove "Content Delivery Manager".

    I also made available a model of my AutoUnattend *.xml answer file with a ReadMe for those who want to play a little.

    Reported a problem in the question "Do you want to Enable Fraunhofer MP3 Professional Codec ? ['Y'es/'N'o] :" mentioned in the post "https://forums.mydigitallife.net/threads/msmg-toolkit.50572/page-796#post-1607819" by friend @roedel.

    Problem solved.

    As @MSMG said:
    Content Delivery Manager is needed for OOBE for v1809 / v1903 / v1909 / v2004 / v2009 OS.
    Windows Error Reporting is needed for OOBE for v1903 / v1909 OS.

    These components will no longer be automatically removed by the "Editions Custom Selection Removal Script" options available in CustomToolkit.

    If you want, just access the "Remove Privacy Components Menu" to remove "Windows Error Reporting" and "Remove System Components Menu" to remove "Content Delivery Manager".

    When I have an idea to edit the code I add commented lines as if they were reminders or a list of what to do.
    So, I removed some obsolete lines left behind.

    Also, I created a way to use the customized version and the original version of the Toolkit, without having to replace the original files.

    When you run Start.cmd, the Original Toolkit.cmd starts.
    When you run CustomStart.cmd, the CustomToolkit.cmd starts.

    In this file I also placed the original files, for those who had previously replaced them.

    Fixed the bug in the question about choosing the StorageDrive, when you answer "No". I kept asking for the letter and did not go to the Main Menu.

    Correcting the problem of saving the iso that I had set for my drive "I:", I decided to add an option to keep it as is or set another one (Optional for those who need to save their isos on some larger drive). Very simple. There is a moment when opening the toolkit that asks you to check <ENTER>. Well select Y or N. "N" will keep the ISO folder where it has always been - inside the Toolkit folder. Than select your drive.

    Fix Cortana App was not removed in 2004 H1 (only in the custom removal options I made available).

    In that apply tweaks menu by answering questions system, I added a question to the end to apply the integration of your Registry (*.reg) files.

    Removed some "pause" commands from the end of some processes in the Menus (Integrate Windows Features Menu - Integrate Windows Custom Features Menu - Remove Menu (when we select some of the Remove All Components) - Customize Menu) and replaced them with a question "Do you want to continue in that menu?"

    The part with menu options with custom component removal scripts has been retained.

    A huge change has made to apply Tweaks by answering Y (yes) or N (no) questions.

    The focus is on Menu 4 -> 2 and feel free to test.
    @mhussain , the part I promised is ready.
    follow 4, 2, A for Accessibility Edition
    at the end of the first part, you will be asked if you want to keep the Mixed Reality Pack, then ask if you want to keep the components for game functionality.
    just select Y or N.
    Back, in my menu is with the letter Q.

    In the initial menu, Exit, I also changed to the letter Q.

    Apply Custom Tweaks Menu is added. My Custom Tweaks List Available to Apply.

    Thnks!
     
  10. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    It is a palliative fix because I don't have the necessary programming knowledge to solve both sides of the problem.

    Let's wait for @MSMG, which certainly can reach a final solution.

    Perhaps even for the Enterprise insider preview that is coming in 4-digit builds.
     
  11. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Thanks, Will checkout.

     
  12. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Ok check and fix it.

     
  13. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Fixed it by removing double quotes in the statement if "%ImageServicePackBuild%" lss "418" and now it works.

    Just use the if %ImageServicePackBuild% lss 418, for numbers comparisons don't use double quotes like strings.

    Code:
    ===============================================================================
                      MSMG ToolKit - Removing Windows Components
    ===============================================================================
    
    -------------------------------------------------------------------------------
    ####Starting Removing Windows Components#######################################
    -------------------------------------------------------------------------------
    
        Image                    : Install.wim
        Image Index              : 1
        Image Architecture       : x64
        Image Version            : 10.0.18363.1049.0
        Image Edition            : Professional
        Image Default Language   : en-US
    
    -------------------------------------------------------------------------------
    ####Removing Windows Components################################################
    -------------------------------------------------------------------------------
    
    -------------------------------------------------------------------------------
    Removing Windows Defender App Package...
    -------------------------------------------------------------------------------
    
    MSMG ToolKit Commandline Helper
    Version: 1.0.3564.0
    
    Image Version: 10.0.18363.1049
    
    Component : WindowsDefender
    
    Removing Package files...
    Modifying Package files...
    Loading Image Registry...
    Modifying Package Registry...
    Unloading Image Registry...
    
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    ####Finished Removing Windows Components#######################################
    -------------------------------------------------------------------------------
    
    ===============================================================================
    
    Press any key to continue . . .
    
     
  14. jahike

    jahike MDL Novice

    Oct 30, 2017
    27
    3
    0
  15. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    #16237 inTerActionVRI, Aug 28, 2020
    Last edited: Aug 28, 2020
    Code:
    :: Checking whether the selected Source OS is a Windows 10 v1809 Client Non-refreshed Image
    if "%SelectedSourceOS%" equ "w10" if "%ImageBuild%" equ "17763" if %ImageServicePackBuild% neq 1 (
       echo.ToolKit component removal only work with the below Source OS Images...
       echo.
       echo.Windows 10 v1809 ^(10.0.17763.1^) Source OS.
       goto :Stop
    )
    
    :: Checking whether the selected Source OS is a Windows 10 v1903 Client Edition
    if "%SelectedSourceOS%" equ "w10" if "%ImageBuild%" equ "18362" if %ImageServicePackBuild% lss 30 (
       echo.ToolKit component removal only work with the below Source OS Images...
       echo.
       echo.Windows 10 v1903 ^(10.0.18362.30^) Source OS.
       goto :Stop
    )
    
    :: Checking whether the selected Source OS is a Windows 10 v1909 Client Edition
    if "%SelectedSourceOS%" equ "w10" if "%ImageBuild%" equ "18363" if %ImageServicePackBuild% lss 418 (
       echo.ToolKit component removal only work with the below Source OS Images...
       echo.
       echo.Windows 10 v1909 ^(10.0.18363.418^) Source OS.
       goto :Stop
    )
    
    :: Checking whether the selected Source OS is a Windows 10 v2004 Client Edition
    if "%SelectedSourceOS%" equ "w10" if "%ImageBuild%" equ "19041" if %ImageServicePackBuild% lss 208 (
       echo.ToolKit component removal only work with the below Source OS Images...
       echo.
       echo.Windows 10 v2004 ^(10.0.19041.208^) Source OS.
       goto :Stop
    )
    
    :: Checking whether the selected Source OS is a Windows 10 v2009 Client Edition
    if "%SelectedSourceOS%" equ "w10" if "%ImageBuild%" equ "19042" if %ImageServicePackBuild% lss 208 (
       echo.ToolKit component removal only work with the below Source OS Images...
       echo.
       echo.Windows 10 v2009 ^(10.0.19042.208^) Source OS.
       goto :Stop
    )
    
    As suggested by @MSMG, new correction and Custom Toolkit v2 for today.
     
  16. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    https://forums.mydigitallife.net/threads/msmg-toolkit.50572/page-793#post-1606110

    Sent an 2020-08-28_v2 updated file in the post above.


    Now, with @MSMG suggestions, the removal menu doesn't show there options for ISO sources integrated with new cumulative or feature updates, is fixed.
    ex:
    18362.1016
    18363.1016

    Merged with new MSMG Toolkit 10.3

    Added: Show info in Source Menu when you have already selected your source.

    Merged with new Toolkit 10.2


    Some improvments:

    When you selected any option to remove all components and decided to return by answering "no" for some reason. You would always return to the Main Menu. In the Custom Toolkit when you answer "no" you are returned to the menu you were in.

    In previous Custom Toolkits I couldn't see a way to maintain the Original "Apply Tweaks Menu" without increasing the code size.

    But thanks to the changes that @MSMG made in the new version, it opened my eyes and I managed to put both menus. The original "Apply Tweaks Menu" back and the "Custom Apply Tweaks Menu".

    The problem was that when deciding to apply a tweak individually, fall into the system of applying all tweaks by answering questions. But now this is fixed.

    There was an error with an extra quote in the Edge removal lines, for some Custom Removal to make Specific Editions. First I thought about correcting it just by removing the extra quote. But I changed my mind and simply put it to remove the Edge directly on the command line to remove multiple components at once.

    I decided to make some changes mainly in the "Gamer Edition" (more components removed that can be added through the Windows Store), so I made changes in the other "Custom Editions" as well. But not in the "Accessibility Edition".

    I put some pauses in the custom integration steps "Integrate Custom Selection 8 7 6 5" so that you can see what happens.

    Fixed a registry error in my custom tweaks and added suggestions for use in the Windows Store, automatic installations in silent mode disabled. Autodownload - Update for installed apps enabled

    Code:
    ...
           if "%Component%" equ "PrivacyComponents" (
               %ToolKitHelper% "%InstallMount%\%%i" AssignedAccess;CEIP_SQM;FaceRecognition;KernelDebugging;LocationService;PicturePassword;PinEnrollment;UnifiedTelemetryClient;WiFiNetworkManager;WindowsInsiderHub
               if "%ImageBuild%" equ "17763" %ToolKitHelper% "%InstallMount%\%%i" WindowsErrorReporting
               if "%ImageBuild%" geq "18362" if "%ImageBuild%" leq "18363" %ToolKitHelper% "%InstallMount%\%%i" WindowsErrorReporting
               if "%ImageBuild%" equ "19041" %ToolKitHelper% "%InstallMount%\%%i" WindowsErrorReporting
               if "%ImageBuild%" equ "19042" %ToolKitHelper% "%InstallMount%\%%i" WindowsErrorReporting
           )
    )else(
           if "%Component%" equ "PrivacyComponents" (
               %ToolKitHelper% "%InstallMount%" AssignedAccess;CEIP_SQM;FaceRecognition;KernelDebugging;LocationService;PicturePassword;PinEnrollment;UnifiedTelemetryClient;WiFiNetworkManager;WindowsInsiderHub
               if "%ImageBuild%" equ "17763" %ToolKitHelper% "%InstallMount%" WindowsErrorReporting
               if "%ImageBuild%" geq "18362" if "%ImageBuild%" leq "18363" %ToolKitHelper% "%InstallMount%" WindowsErrorReporting
               if "%ImageBuild%" equ "19041" %ToolKitHelper% "%InstallMount%" WindowsErrorReporting
               if "%ImageBuild%" equ "19042" %ToolKitHelper% "%InstallMount%" WindowsErrorReporting
           )
    )
    

    Windows Error Reporting is needed for OOBE for v1903 / v1909 OS.
    This component has been reinserted and will pass again, according to specific conditions, to be automatically removed by the "Editions Custom Selection Removal Script" options available in CustomToolkit. Conditions prevent removal on versions v1903 / v1909.

    Only for:
    Remove All Privacy Components
    Accessibility Edition
    Lite Edition
    Xtreme Lite Edition
    Content Delivery Manager is needed for OOBE for v1809 / v1903 / v1909 / v2004 / v2009 OS.
    For this Component, if you want, just access the "Remove System Components Menu" to remove "Content Delivery Manager".

    I also made available a model of my AutoUnattend *.xml answer file with a ReadMe for those who want to play a little.

    Reported a problem in the question "Do you want to Enable Fraunhofer MP3 Professional Codec ? ['Y'es/'N'o] :" mentioned in the post "https://forums.mydigitallife.net/threads/msmg-toolkit.50572/page-796#post-1607819" by friend @roedel.

    Problem solved.

    As @MSMG said:
    Content Delivery Manager is needed for OOBE for v1809 / v1903 / v1909 / v2004 / v2009 OS.
    Windows Error Reporting is needed for OOBE for v1903 / v1909 OS.

    These components will no longer be automatically removed by the "Editions Custom Selection Removal Script" options available in CustomToolkit.

    If you want, just access the "Remove Privacy Components Menu" to remove "Windows Error Reporting" and "Remove System Components Menu" to remove "Content Delivery Manager".

    When I have an idea to edit the code I add commented lines as if they were reminders or a list of what to do.
    So, I removed some obsolete lines left behind.

    Also, I created a way to use the customized version and the original version of the Toolkit, without having to replace the original files.

    When you run Start.cmd, the Original Toolkit.cmd starts.
    When you run CustomStart.cmd, the CustomToolkit.cmd starts.

    In this file I also placed the original files, for those who had previously replaced them.

    Fixed the bug in the question about choosing the StorageDrive, when you answer "No". I kept asking for the letter and did not go to the Main Menu.

    Correcting the problem of saving the iso that I had set for my drive "I:", I decided to add an option to keep it as is or set another one (Optional for those who need to save their isos on some larger drive). Very simple. There is a moment when opening the toolkit that asks you to check <ENTER>. Well select Y or N. "N" will keep the ISO folder where it has always been - inside the Toolkit folder. Than select your drive.

    Fix Cortana App was not removed in 2004 H1 (only in the custom removal options I made available).

    In that apply tweaks menu by answering questions system, I added a question to the end to apply the integration of your Registry (*.reg) files.

    Removed some "pause" commands from the end of some processes in the Menus (Integrate Windows Features Menu - Integrate Windows Custom Features Menu - Remove Menu (when we select some of the Remove All Components) - Customize Menu) and replaced them with a question "Do you want to continue in that menu?"

    The part with menu options with custom component removal scripts has been retained.

    A huge change has made to apply Tweaks by answering Y (yes) or N (no) questions.

    The focus is on Menu 4 -> 2 and feel free to test.
    @mhussain , the part I promised is ready.
    follow 4, 2, A for Accessibility Edition
    at the end of the first part, you will be asked if you want to keep the Mixed Reality Pack, then ask if you want to keep the components for game functionality.
    just select Y or N.
    Back, in my menu is with the letter Q.

    In the initial menu, Exit, I also changed to the letter Q.

    Apply Custom Tweaks Menu is added. My Custom Tweaks List Available to Apply.


    Thnks!
     
  17. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210