![]() |
System Info in My Computer Properties - Printable Version +- AiOwares (https://www.aiowares.com) +-- Forum: Software & Applications (https://www.aiowares.com/forumdisplay.php?fid=6) +--- Forum: Multi-Platform Software (https://www.aiowares.com/forumdisplay.php?fid=14) +---- Forum: Windows (https://www.aiowares.com/forumdisplay.php?fid=42) +---- Thread: System Info in My Computer Properties (/showthread.php?tid=1565) Pages:
1
2
|
System Info in My Computer Properties - MaskedUser - 01-16-2020 How to set up your Ssytem to show Mothorboard Manufacturer & Model in your My Computer Properties : PHP Code: The contents of this section are hidden Save the code as ssytem.bat & run it as admin . Go to MyComputer Properties & there you are . Enjoy. OR Run This Executable Compiled By Myself Using Advanced Features : Code: The contents of this section are hidden RE: System Info in My Computer Properties - TanMan - 01-17-2020 Sweet! Very nice! Thank you! RE: System Info in My Computer Properties - MaskedUser - 01-17-2020 Most Welcome Brother . Keep supporting my work . i am also working on a Linux Based AIOWARES Live Disk with same tools as they are in AIOWARES win10 PE ![]() RE: System Info in My Computer Properties - TanMan - 01-19-2020 FYI, the code originally posted here only works if the motherboard name does not have any spaces in it. So, for example, one of my machines has a Asus Sabertooth X58, but the product shows up as "Sabertooth". I've fixed it, so keep reading if you're interested. The "tokens=3*" on the FOR /F statement will put the third parameter found in the target variable (%i in this case), but anything following that third parameter will be placed in the next variable (%j if the first is %i, as in this case). So with this motherboard, %i will contain Sabertooth and %j will contain X58. Note that if there is nothing after the third parameter, %j will be an empty string (""). So all I needed to do was to add %%j to the SET of BaseBoardProduct. I also added an ECHO OFF to suppress output of the commands, a SETLOCAL command so that the environment variables being set are just local to the code, added some output, and suppressed the normal output from the REG ADD statements (but errors will still be shown). Here's the updated code: PHP Code: The contents of this section are hidden RE: System Info in My Computer Properties - Skunk1966 - 01-19-2020 (01-19-2020, 02:17 AM)TanMan Wrote: The contents of this section are hiddenYou have No permissionsdoesn't work on my Windows 7 Ult. x64 pc. No registry keys added at all RE: System Info in My Computer Properties - MaskedUser - 01-19-2020 (01-19-2020, 05:48 AM)Skunk1966 Wrote: The contents of this section are hiddenYou have No permissions @Skunk1966 brother you are already a talented pro. i know you can create your own bat file which works on win7 . to be very fare i have copied that script from ru board forums. RE: System Info in My Computer Properties - Skunk1966 - 01-19-2020 doesn't matter if I can do it; not everyone on AiO can do it so I can't do anything else but mention it so others know @TanMan can check RE: System Info in My Computer Properties - TanMan - 01-19-2020 (01-19-2020, 12:20 PM)Disk2019 Wrote: The contents of this section are hiddenYou have No permissions I don't have a Windows 7 machine (real or virtual) anymore to test on. Just to make sure, you did run it as administrator, right? RE: System Info in My Computer Properties - Skunk1966 - 01-19-2020 (01-19-2020, 03:16 PM)TanMan Wrote: The contents of this section are hiddenYou have No permissionsyes ofcourse I did RE: System Info in My Computer Properties - TanMan - 01-20-2020 (01-19-2020, 05:12 PM)Skunk1966 Wrote: The contents of this section are hiddenYou have No permissions OK. Just checking. On Tuesday I should have a few hours to set up a Windows 7 virtual machine to see what's going on. |