• Capturing "About Phone" Info to a File?

    From croy@21:1/5 to All on Sun May 18 12:50:39 2025
    Is there a way to capture the "About Phone" info to a file that I can send
    as eMail? Screenshots can only get it in bits.

    --
    croy

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Andy Burns@21:1/5 to croy on Sun May 18 21:23:24 2025
    croy wrote:

    Is there a way to capture the "About Phone" info to a file that I can send
    as eMail? Screenshots can only get it in bits.
    Are you sure your phone's screenshot utility doesn't have the ability to
    grow or shrink the captured area after the initial shot is taken?

    On mine you take the screenshot in the usual way (PWR and VOL-) then
    there's an icon with arrows at the bottom next to the sharing and edit
    icons.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to Andy Burns on Sun May 18 21:46:23 2025
    On Sun, 18 May 2025 21:23:24 +0100, Andy Burns wrote :


    Is there a way to capture the "About Phone" info to a file that I can send >> as eMail? Screenshots can only get it in bits.
    Are you sure your phone's screenshot utility doesn't have the ability to
    grow or shrink the captured area after the initial shot is taken?

    On mine you take the screenshot in the usual way (PWR and VOL-) then
    there's an icon with arrows at the bottom next to the sharing and edit
    icons.

    It's a complete waste of my energy to answer any of the OP's questions;
    however for the others here who care to know the answers, it's easy to do.

    While one can OCR for free with Irfanview on Windows it's probably easier
    to use adb to spit out the "About Phone" information to a text on Windows.

    C:\> adb shell getprop > about_phone_info.txt


    For specific keywords, one can grep for the desired strings:

    C:\> adb shell getprop | findstr version.release
    C:\> adb shell getprop | findstr ro.product.model
    C:\> adb shell getprop | gsm.version.baseband
    etc.

    In addition, I have a whole bunch of system-reporting apps, some of which
    have an output "Save As" option. Some of those reporting apps I have are AUDA64, DevCheck, Device Info, Device Info Hardware, Treble Info, Inware,
    CPU Info, CPU-Z and a few others, but since Stan isn't reading this,
    there's no good reason for me to delve further other than to help those who
    can be helped.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Arno Welzel@21:1/5 to All on Mon May 19 08:37:49 2025
    Marion, 2025-05-18 23:46:

    On Sun, 18 May 2025 21:23:24 +0100, Andy Burns wrote :


    Is there a way to capture the "About Phone" info to a file that I can send >>> as eMail? Screenshots can only get it in bits.
    Are you sure your phone's screenshot utility doesn't have the ability to
    grow or shrink the captured area after the initial shot is taken?

    On mine you take the screenshot in the usual way (PWR and VOL-) then
    there's an icon with arrows at the bottom next to the sharing and edit
    icons.

    It's a complete waste of my energy to answer any of the OP's questions; however for the others here who care to know the answers, it's easy to do.

    While one can OCR for free with Irfanview on Windows it's probably easier
    to use adb to spit out the "About Phone" information to a text on Windows.

    C:\> adb shell getprop > about_phone_info.txt

    In addition: that requires a working setup of ADB on the host computer
    and a connection via USB. The device also has to allow "USB debugging", otherwise you can't do anything at all using ADB.

    Also see: <https://developer.android.com/tools/adb?authuser=1&hl=en>


    --
    Arno Welzel
    https://arnowelzel.de

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to Arno Welzel on Mon May 19 07:09:00 2025
    On Mon, 19 May 2025 08:37:49 +0200, Arno Welzel wrote :


    It's a complete waste of my energy to answer any of the OP's questions;
    however for the others here who care to know the answers, it's easy to do. >>
    While one can OCR for free with Irfanview on Windows it's probably easier
    to use adb to spit out the "About Phone" information to a text on Windows. >>
    C:\> adb shell getprop > about_phone_info.txt

    In addition: that requires a working setup of ADB on the host computer
    and a connection via USB. The device also has to allow "USB debugging", otherwise you can't do anything at all using ADB.

    Also see: <https://developer.android.com/tools/adb?authuser=1&hl=en>

    Thanks! That's a helpful and accurate addition to the new tutorial!
    *Tutorial: How to output Android system information to a text/pdf/html file*
    <https://www.novabbs.com/computers/article-flat.php?id=59032&group=comp.mobile.android#59032>

    You're absolutely right - a working ADB installation on the host computer
    and enabling USB debugging on the Android device are prerequisites for
    using any of the ADB commands I listed.

    It's also great that you mentioned ADB over Wi-Fi as an alternative for
    newer devices. That's a handy option for those who prefer a wireless connection.

    BTW, does anyone know why adb won't get the first file generated? /storage/emulated/0/Android/data/com.finalwire.aida64\files\report-2025-05-18-22-26-59.txt

    We should probably add your improvement to the concomitant XDA thread.
    *Tutorial: How to output Android system information to a text/pdf/html file* á<https://xdaforums.com/t/tutorial-how-to-output-android-system-information-to-a-text-pdf-html-file.4737418/>
    Note long titles are on purpose to help people find it in searches.

    Check it out and let me know if I added the information correctly.
    The advantage of XDA is that google searches find it so more people
    can benefit from our combined effort to increase our tribal knowledge.

    This is what I just now added to the XDA Developers thread...

    Important Note: To use ADB (Android Debug Bridge), you need a working ADB
    setup on your computer. This typically involves installing the Android SDK Platform-Tools. Additionally, you need to connect your Android device to
    your computer via USB, and enable "USB debugging" in the Developer Options
    of your Android device. For newer devices, ADB can sometimes be used over Wi-Fi, which requires knowing the device's IP address on the local network. Without these prerequisites, the ADB commands below will not work. You can
    find more information on setting up ADB here: https://developer.android.com/tools/adb?authuser=1&hl=en

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)