[SOLVED] Windows Embedded Std 7 with SP1 Wallpapers names/location

Discussion in 'Windows Embedded' started by Kenafri, Jan 12, 2017.

  1. Kenafri

    Kenafri MDL Member

    Jul 22, 2014
    104
    49
    10
    #1 Kenafri, Jan 12, 2017
    Last edited by a moderator: Apr 20, 2017
    Hi everybody!

    I'm workin' on a script to replace all Windows versions (from Windows 6.1 to Windows 10/6.4) wallappers offline.
    So, i need help of Windows Embedded Standard 7 with SP1 (x86/x64) users to achieve the job...:eek:

    How? Just run two cmdlines below and send results as attachments here
    Code:
    for /f "delims=" %i in ('"%Windir%\system32\cmd.exe" /c tree /F /A %Windir%\Web') do echo.%i>>%userprofile%\desktop\ListingWebDir.txt
    
    for /f "delims=" %i in ('"%Windir%\system32\cmd.exe" /c tree /F /A %Windir%\WinSXS') do echo.%i>>%userprofile%\desktop\ListingWinSXSDir.txt
    
    Thanx :worthy:
     
  2. Kenafri

    Kenafri MDL Member

    Jul 22, 2014
    104
    49
    10
    Hi leebo_28!

    HUGE THANX for your help! :clap::clap::clap::clap:


    PS: Could you do the same for 64 bits editions of Windows Embedded 7 Standard SP1, please? :worthy:

     
  3. leebo_28

    leebo_28 MDL Senior Member

    Jun 12, 2011
    465
    172
    10
    Yes ...give me 24 hours
     
  4. Kenafri

    Kenafri MDL Member

    Jul 22, 2014
    104
    49
    10
    Thanx . AGAIN.
     
  5. Kenafri

    Kenafri MDL Member

    Jul 22, 2014
    104
    49
    10
    You're my savior :worthy:
     
  6. Kenafri

    Kenafri MDL Member

    Jul 22, 2014
    104
    49
    10
    #8 Kenafri, Jan 18, 2017
    Last edited by a moderator: Apr 20, 2017
    (OP)
    And what about User Account Pictures (UAP)?
    Code:
    for /f "delims=" %i in ('"%Windir%\system32\cmd.exe" /c tree /F /A %ProgramData%\Microsoft\User Account Pictures') do echo.%i>>%userprofile%\desktop\ListingUAPFiles.txt
    
    :eek:
     
  7. leebo_28

    leebo_28 MDL Senior Member

    Jun 12, 2011
    465
    172
    10
    #9 leebo_28, Jan 18, 2017
    Last edited by a moderator: Apr 20, 2017
    "Too many parameters - Account" was the feedback for both 32 and 64
     
  8. Kenafri

    Kenafri MDL Member

    Jul 22, 2014
    104
    49
    10
    No worry about that :p.

    Once again... THANX
     
  9. Kenafri

    Kenafri MDL Member

    Jul 22, 2014
    104
    49
    10
    #11 Kenafri, Jan 27, 2017
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Hi leebo_28!

    Can u make me another favor?

    I'm looking for Windows Embedded 7 Std SP1 Editions/Installation Types 'names'...

    Could you check that for me in cmd prompt?



    -- Find OS Installation Type
    Code:
    for /f "tokens=2*" %a in ('REG QUERY "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v InstallationType') do echo.Installation Type is : %b
    


    -- Find OS Edition ID
    Code:
    for /f "tokens=2*" %a in ('REG QUERY "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v EditionID') do echo.Edition is : %b
    
    :worthy: