Teamviewer will soon require mandatory accounts


cereberus

Well-known member
Guru
VIP
Local time
10:39 PM
Posts
7,108
OS
Windows 11 Pro + Win11 Canary VM.
1678748581360.png
 

My Computer

System One

  • OS
    Windows 11 Pro + Win11 Canary VM.
    Computer type
    Laptop
    Manufacturer/Model
    ASUS Zenbook 14
    CPU
    I9 13th gen i9-13900H 2.60 GHZ
    Motherboard
    Yep, Laptop has one.
    Memory
    16 GB soldered
    Graphics Card(s)
    Integrated Intel Iris XE
    Sound Card
    Realtek built in
    Monitor(s) Displays
    laptop OLED screen
    Screen Resolution
    2880x1800 touchscreen
    Hard Drives
    1 TB NVME SSD (only weakness is only one slot)
    PSU
    Internal + 65W thunderbolt USB4 charger
    Case
    Yep, got one
    Cooling
    Stella Artois (UK pint cans - 568 ml) - extra cost.
    Keyboard
    Built in UK keybd
    Mouse
    Bluetooth , wireless dongled, wired
    Internet Speed
    900 mbs (ethernet), wifi 6 typical 350-450 mb/s both up and down
    Browser
    Edge
    Antivirus
    Defender
    Other Info
    TPM 2.0, 2xUSB4 thunderbolt, 1xUsb3 (usb a), 1xUsb-c, hdmi out, 3.5 mm audio out/in combo, ASUS backlit trackpad (inc. switchable number pad)

    Macrium Reflect Home V8
    Office 365 Family (6 users each 1TB onedrive space)
    Hyper-V (a vm runs almost as fast as my older laptop)
I used this program to help people clean their computers who did not quiet understand what to do. But after awhile TeamViewer wanted me to pay them, so i started using "Quick Assist" !
 

My Computer

System One

  • OS
    Windows11 23H2 (OS Build 22631.2428)
    Computer type
    PC/Desktop
    Manufacturer/Model
    HP HP ENVY TE01
    CPU
    2.90 gigahertz Intel Core i7-10700
    Motherboard
    Board: HP 8767 A (SMVB)
    Memory
    16214 Megabytes Usable Installed Memor
    Hard Drives
    1511.52 Gigabytes Usable Hard Drive Capacity
    1418.15 Gigabytes Hard Drive Free Space
    Keyboard
    Logitech wireless
    Mouse
    M 185 wireless
    Internet Speed
    12 ms Jitter 8 ms Download 10.5 Mbps Upload 1.7
    Browser
    Edge & FF
    Antivirus
    Windows Defender
I sometimes use Team Viewer without logging into my account. But as far as I know, you can't use all the features of the application without a login.
Besides, it seems to me that this is done for security, I recently came across an article about what you need to do to secure a remote session TeamViewer Security Risks - 10 Steps To Reduce It It describes the risks.
I think this article will be interesting for TeamViewer users.
 

My Computer

System One

  • OS
    Windows 10
Hi folks

@flashh4 and others :

Plenty of other ways to avoid using team viewer. If you know the remote IP address you can also use Windows Remote Assistance for assisting with remote computers (although that of course requires someone on the remote computer to approve the remote logon).

The main reason people seem to want to use it is that it provides a remote "Dynamic" IP address for your system whenever your own ISP provider changes the IP address.

RDP (Remote Desktop) is simple enough - just route the appropriate IP address to the router via the standard port (3389) -- or enable Putty with tunnelling . For typical remote uses to HOME computers RDP is easy enough - and while not the most secure system it's safe enough for the average home user for "casual use".


My way round that is via a command line script to send an email to my mobile phone every 2 hours (change at will -- may be every 6 hours or 24 depending on your ISP.

At this stage I'm testing on a server that doesn't need authentication (port 25) -- will add the authentication
in a further example later .

I decided to use netcat rather than telnet because telnet needs a few sleep commands in it to handle
responses from the server.

I left the start variables as interactive so its easier for testing on different servers and sending to different
email addresses.

This also works from the WSL on Windows -- install dnsutils to get the dig command on it.

I'm sure windows gurus out there can easily convert this simple script to Windows -- .
Run say at your choice time interval or whatever via crontab in linux / or in windows any job scheduler -- (Run this on the REMOTE computer of course !!!!).

#!/bin/bash
# Send email from bash
# hrafn simple script to send simple email with your IP address (external)
read -p "Enter SMTP email server address: " server
read -p "Enter SMTP Port: " port
read -p "Enter Your Email Address: " from
read -p "Enter Recipient's Email Address: " to
# get your public IP address
myip="$(dig +short myip.opendns.com @ReSolver1.opendns.com)"
# create message
function mail_input {
echo "ehlo $(hostname -f)"
echo "MAIL FROM: <$from>"
echo "RCPT TO: <$to>"
echo "DATA"
echo "From: <$from>"
echo "To: <$to>"
echo "Subject: Testing SMTP Mail"
echo " "
echo "Your public internet address is "
echo $myip
echo " "
echo "finished"
echo "."
echo "quit"
}
mail_input | netcat $server $port || err_exit


Don't forget to finish the inline text with the "." line before the SMTP quit command.

Using this method doesn't require the use of an email server or client on the host.

If you always know your own "external remote IP address" you can use all sorts of ways of connecting to your home computer from the wider Internet --remember though that Windows HOME of any release can only act as a CLIENT if you are using RDC for connections. For simple file transfers things like filezillla are good and if you are up to it you can set up the built in Windows VPN too.

With decent fast fibre optic systems even for upload you can avoid 3rd party commercial offerings for remote computer access.

Time to give a "Churchillian 2 fingured salute" to Teamviewer.

Cheers
jimbo
 
Last edited:

My Computer

System One

  • OS
    Windows XP,7,10,11 Linux Arch Linux
    Computer type
    PC/Desktop
    CPU
    2 X Intel i7
Hi folks
Plenty of other ways to avoid using team viewer.
The main reason people seem to want to use it is that it provides a remote "Dynamic" IP address for your system whenever your own ISP provider changes the IP address.

My way round that is via a command line script to send an email to my mobile phone every 2 hours (change at will -- may be every 6 hours or 24 depending on your ISP.

At this stage I'm testing on a server that doesn't need authentication (port 25) -- will add the authentication
in a further example later .

I decided to use netcat rather than telnet because telnet needs a few sleep commands in it to handle
responses from the server.

I left the start variables as interactive so its easier for testing on different servers and sending to different
email addresses.

This also works from the WSL on Windows -- install dnsutils to get the dig command on it.

I'm sure windows gurus out there can easily convert this simple script to Windows -- .
Run say at your choice ime interval or whatever via crontab in linux / or in windows any job scheduler --

#!/bin/bash
# Send email from bash
# hrafn simple script to send simple email with your IP address (external)
read -p "Enter SMTP email server address: " server
read -p "Enter SMTP Port: " port
read -p "Enter Your Email Address: " from
read -p "Enter Recipient's Email Address: " to
# get your public IP address
myip="$(dig +short myip.opendns.com @ReSolver1.opendns.com)"
# create message
function mail_input {
echo "ehlo $(hostname -f)"
echo "MAIL FROM: <$from>"
echo "RCPT TO: <$to>"
echo "DATA"
echo "From: <$from>"
echo "To: <$to>"
echo "Subject: Testing SMTP Mail"
echo " "
echo "Your public internet address is "
echo $myip
echo " "
echo "finished"
echo "."
echo "quit"
}
mail_input | netcat $server $port || err_exit


Don't forget to finish the inline text with the "." line before the SMTP quit command.


Using this method doesn't require the use of an email server or client on the host (
If you always know your own "external remote IP address" you can use all sorts of ways of connecting to your home computer from the wider Internet --remember though that Windows HOME of any release can only act as a CLIENT if you are using RDC for connections. For simple file transfers things like filezillla are good and if you are up to it you can set up the built in Windows VPN too.

With decent fast fibre optic systems even for upload you can avoid 3rd party commercial offerings for remote computer access.

Time to give a "Churchillian 2 fingured salute" to Teamviewer.

Cheers
jimbo
Or just Anydesk
 

My Computer

System One

  • OS
    Windows 11 Pro + Win11 Canary VM.
    Computer type
    Laptop
    Manufacturer/Model
    ASUS Zenbook 14
    CPU
    I9 13th gen i9-13900H 2.60 GHZ
    Motherboard
    Yep, Laptop has one.
    Memory
    16 GB soldered
    Graphics Card(s)
    Integrated Intel Iris XE
    Sound Card
    Realtek built in
    Monitor(s) Displays
    laptop OLED screen
    Screen Resolution
    2880x1800 touchscreen
    Hard Drives
    1 TB NVME SSD (only weakness is only one slot)
    PSU
    Internal + 65W thunderbolt USB4 charger
    Case
    Yep, got one
    Cooling
    Stella Artois (UK pint cans - 568 ml) - extra cost.
    Keyboard
    Built in UK keybd
    Mouse
    Bluetooth , wireless dongled, wired
    Internet Speed
    900 mbs (ethernet), wifi 6 typical 350-450 mb/s both up and down
    Browser
    Edge
    Antivirus
    Defender
    Other Info
    TPM 2.0, 2xUSB4 thunderbolt, 1xUsb3 (usb a), 1xUsb-c, hdmi out, 3.5 mm audio out/in combo, ASUS backlit trackpad (inc. switchable number pad)

    Macrium Reflect Home V8
    Office 365 Family (6 users each 1TB onedrive space)
    Hyper-V (a vm runs almost as fast as my older laptop)
Or just Anydesk
Why be dependent on things that standard Windows can do easily enough !!!!! With more and more companies wanting to "Monetize" everything who's to say that AnyDesk won't go the same way too in the near future. Look at Macrium retiring the Free edition. Loads of other software now hobbles features unless "You Go Pro" i.e pay.

Also this shows a little more of "The hidden power" of windows too. Always fun to learn a bit more.

Cheers
jimbo
 

My Computer

System One

  • OS
    Windows XP,7,10,11 Linux Arch Linux
    Computer type
    PC/Desktop
    CPU
    2 X Intel i7
If you know the remote IP address you can also use Windows Remote Assistance for assisting with remote computers
You don't have to know any IP adress. Only send a code to the client who enters it in their end of Remote Assistance app, and off you go.

The important part here is that it is the client who invokes the session, not the one in the other end.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 build 10.0.22631.4825 (Release Channel) / Linux Mint 22.1 Cinnamon
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo A485
    CPU
    Ryzen 7 2700U Pro
    Motherboard
    Lenovo (WiFi/BT module upgraded to Intel Wireless-AC-9260)
    Memory
    32GB
    Graphics Card(s)
    iGPU Vega 10
    Sound Card
    Realtek
    Monitor(s) Displays
    14" FHD (built-in) + 14" Lenovo Thinkvision M14t (touch+pen) + 32" Asus PB328
    Screen Resolution
    FHD + FHD + 1440p
    Hard Drives
    Intel 660p m.2 nVME PCIe3.0 x2 512GB
    PSU
    65W
    Keyboard
    Thinkpad / Logitech MX Keys
    Mouse
    Logitech MX Master 2S
    Internet Speed
    600/300Mbit
    Browser
    Edge (Chromium)
    Antivirus
    Windows Defender
    Other Info
    SecureBoot: Enabled
    TPM2.0: Enabled
    AMD-V: Enabled
  • Operating System
    Windows 11 Pro 23H2 build 10.0.22631.4825(Release Preview Channel)
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom
    CPU
    i7-7700k @4.8GHz
    Motherboard
    Asus PRIME Z270-A
    Memory
    32GB 2x16GB 2133MHz CL15
    Graphics card(s)
    EVGA GTX1080Ti FTW 11GB
    Sound Card
    Integrated
    Monitor(s) Displays
    32" 10-bit Asus PB328Q
    Screen Resolution
    WQHD 2560x1440
    Hard Drives
    512GB ADATA SX8000NP NVMe PCIe Gen 3 x4
    PSU
    850W
    Case
    Fractal Design Define 7
    Cooling
    Noctua NH-D15 chromax.black
    Mouse
    Logitech MX Master 2S
    Keyboard
    Logitech MX Keys
    Internet Speed
    600/300Mbit
    Browser
    Edge (Cromium)
    Antivirus
    Windows Defender
    Other Info
    AC WiFi Card
You don't have to know any IP adress. Only send a code to the client who enters it in their end of Remote Assistance app, and off you go.

The important part here is that it is the client who invokes the session, not the one in the other end.
Hi there

Agreed -- but what I meant is that this service requires 2 people (one at each end) to use it.

The main point of the post was on how the person on his / her local laptop / computer say at work or elsewhere could connect to a remote computer at home.

The two issues are different -- Remote assistance and simply logging on as a remote user.

Cheers
jimbo
 

My Computer

System One

  • OS
    Windows XP,7,10,11 Linux Arch Linux
    Computer type
    PC/Desktop
    CPU
    2 X Intel i7
The two issues are different -- Remote assistance and simply logging on as a remote user.
Agreed. The solution to that is VPN tunneling for secure networking. Your remote computer will be seen as if it were local, even if it's thousands of miles away.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2 build 10.0.22631.4825 (Release Channel) / Linux Mint 22.1 Cinnamon
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo A485
    CPU
    Ryzen 7 2700U Pro
    Motherboard
    Lenovo (WiFi/BT module upgraded to Intel Wireless-AC-9260)
    Memory
    32GB
    Graphics Card(s)
    iGPU Vega 10
    Sound Card
    Realtek
    Monitor(s) Displays
    14" FHD (built-in) + 14" Lenovo Thinkvision M14t (touch+pen) + 32" Asus PB328
    Screen Resolution
    FHD + FHD + 1440p
    Hard Drives
    Intel 660p m.2 nVME PCIe3.0 x2 512GB
    PSU
    65W
    Keyboard
    Thinkpad / Logitech MX Keys
    Mouse
    Logitech MX Master 2S
    Internet Speed
    600/300Mbit
    Browser
    Edge (Chromium)
    Antivirus
    Windows Defender
    Other Info
    SecureBoot: Enabled
    TPM2.0: Enabled
    AMD-V: Enabled
  • Operating System
    Windows 11 Pro 23H2 build 10.0.22631.4825(Release Preview Channel)
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom
    CPU
    i7-7700k @4.8GHz
    Motherboard
    Asus PRIME Z270-A
    Memory
    32GB 2x16GB 2133MHz CL15
    Graphics card(s)
    EVGA GTX1080Ti FTW 11GB
    Sound Card
    Integrated
    Monitor(s) Displays
    32" 10-bit Asus PB328Q
    Screen Resolution
    WQHD 2560x1440
    Hard Drives
    512GB ADATA SX8000NP NVMe PCIe Gen 3 x4
    PSU
    850W
    Case
    Fractal Design Define 7
    Cooling
    Noctua NH-D15 chromax.black
    Mouse
    Logitech MX Master 2S
    Keyboard
    Logitech MX Keys
    Internet Speed
    600/300Mbit
    Browser
    Edge (Cromium)
    Antivirus
    Windows Defender
    Other Info
    AC WiFi Card
Agreed. The solution to that is VPN tunneling for secure networking. Your remote computer will be seen as if it were local, even if it's thousands of miles away.
Works fine also from Remote Linux -- tested using mobile phone to create access point outside LAN. Putty / tunnel - perfectly.

On LAN the relevant computer has fixed IP address (internal) .

Screenshot_20230407_102711.png

Note on Windows OPENSERVER SSH client should be installed -- it's there by default anyway unless people have uninstalled it.


Cheers
jimbo
 

My Computer

System One

  • OS
    Windows XP,7,10,11 Linux Arch Linux
    Computer type
    PC/Desktop
    CPU
    2 X Intel i7
Why be dependent on things that standard Windows can do easily enough !!!!! With more and more companies wanting to "Monetize" everything who's to say that AnyDesk won't go the same way too in the near future. Look at Macrium retiring the Free edition. Loads of other software now hobbles features unless "You Go Pro" i.e pay.

Also this shows a little more of "The hidden power" of windows too. Always fun to learn a bit more.

Cheers
jimbo
We can always rely on you to avoid the KISS principle LOL.
 

My Computer

System One

  • OS
    Windows 11 Pro + Win11 Canary VM.
    Computer type
    Laptop
    Manufacturer/Model
    ASUS Zenbook 14
    CPU
    I9 13th gen i9-13900H 2.60 GHZ
    Motherboard
    Yep, Laptop has one.
    Memory
    16 GB soldered
    Graphics Card(s)
    Integrated Intel Iris XE
    Sound Card
    Realtek built in
    Monitor(s) Displays
    laptop OLED screen
    Screen Resolution
    2880x1800 touchscreen
    Hard Drives
    1 TB NVME SSD (only weakness is only one slot)
    PSU
    Internal + 65W thunderbolt USB4 charger
    Case
    Yep, got one
    Cooling
    Stella Artois (UK pint cans - 568 ml) - extra cost.
    Keyboard
    Built in UK keybd
    Mouse
    Bluetooth , wireless dongled, wired
    Internet Speed
    900 mbs (ethernet), wifi 6 typical 350-450 mb/s both up and down
    Browser
    Edge
    Antivirus
    Defender
    Other Info
    TPM 2.0, 2xUSB4 thunderbolt, 1xUsb3 (usb a), 1xUsb-c, hdmi out, 3.5 mm audio out/in combo, ASUS backlit trackpad (inc. switchable number pad)

    Macrium Reflect Home V8
    Office 365 Family (6 users each 1TB onedrive space)
    Hyper-V (a vm runs almost as fast as my older laptop)
We can always rely on you to avoid the KISS principle LOL.
Gets too boring if it's too easy -- !!!!!

I think I must have got the idea from using SAP (some type of huge ERP software) -- Why do the job with one consultant when we can do the same tasks that require 500 !!!!

Cheers
jimbo
 

My Computer

System One

  • OS
    Windows XP,7,10,11 Linux Arch Linux
    Computer type
    PC/Desktop
    CPU
    2 X Intel i7
I used this program to help people clean their computers who did not quiet understand what to do. But after awhile TeamViewer wanted me to pay them, so i started using "Quick Assist" !
I have never been asked to pay? I have a free account and can access the computers of my family even if they are not present.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 24H2 26100.2894
    Computer type
    Laptop
    Manufacturer/Model
    Acer Swift SF114-34
    CPU
    Pentium Silver N6000 1.10GHz
    Memory
    4GB
    Screen Resolution
    1920 x 1080
    Hard Drives
    SSD
    Cooling
    fanless
    Internet Speed
    150 Mbps
    Browser
    Brave
    Antivirus
    Webroot Secure Anywhere
    Other Info
    System 3

    ASUS T100TA Transformer
    Processor Intel Atom Z3740 @ 1.33GHz
    Installed RAM 2.00 GB (1.89 GB usable)
    System type 32-bit operating system, x64-based processor

    Edition Windows 10 Home
    Version 22H2 build 19045.3570
  • Operating System
    Windows 11 Pro 23H2 22631.2506
    Computer type
    Laptop
    Manufacturer/Model
    HP Mini 210-1090NR PC (bought in late 2009!)
    CPU
    Atom N450 1.66GHz
    Memory
    2GB
    Browser
    Brave
    Antivirus
    Webroot
@kelper, maybe they didn't like me using it for 10-15 times a day and for a couple hours on each person ! Not really sure why they wanted payment to continue use !!
 

My Computer

System One

  • OS
    Windows11 23H2 (OS Build 22631.2428)
    Computer type
    PC/Desktop
    Manufacturer/Model
    HP HP ENVY TE01
    CPU
    2.90 gigahertz Intel Core i7-10700
    Motherboard
    Board: HP 8767 A (SMVB)
    Memory
    16214 Megabytes Usable Installed Memor
    Hard Drives
    1511.52 Gigabytes Usable Hard Drive Capacity
    1418.15 Gigabytes Hard Drive Free Space
    Keyboard
    Logitech wireless
    Mouse
    M 185 wireless
    Internet Speed
    12 ms Jitter 8 ms Download 10.5 Mbps Upload 1.7
    Browser
    Edge & FF
    Antivirus
    Windows Defender
I connect to three people but not that often. So I don't think you will be forced to pay if you slow down a bit. 🤣
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 24H2 26100.2894
    Computer type
    Laptop
    Manufacturer/Model
    Acer Swift SF114-34
    CPU
    Pentium Silver N6000 1.10GHz
    Memory
    4GB
    Screen Resolution
    1920 x 1080
    Hard Drives
    SSD
    Cooling
    fanless
    Internet Speed
    150 Mbps
    Browser
    Brave
    Antivirus
    Webroot Secure Anywhere
    Other Info
    System 3

    ASUS T100TA Transformer
    Processor Intel Atom Z3740 @ 1.33GHz
    Installed RAM 2.00 GB (1.89 GB usable)
    System type 32-bit operating system, x64-based processor

    Edition Windows 10 Home
    Version 22H2 build 19045.3570
  • Operating System
    Windows 11 Pro 23H2 22631.2506
    Computer type
    Laptop
    Manufacturer/Model
    HP Mini 210-1090NR PC (bought in late 2009!)
    CPU
    Atom N450 1.66GHz
    Memory
    2GB
    Browser
    Brave
    Antivirus
    Webroot
But i use Quick Assist now & it works great, just that it will kick you off when you ask the user to reboot the machine, but i think that would happen no matter what program i use !
 

My Computer

System One

  • OS
    Windows11 23H2 (OS Build 22631.2428)
    Computer type
    PC/Desktop
    Manufacturer/Model
    HP HP ENVY TE01
    CPU
    2.90 gigahertz Intel Core i7-10700
    Motherboard
    Board: HP 8767 A (SMVB)
    Memory
    16214 Megabytes Usable Installed Memor
    Hard Drives
    1511.52 Gigabytes Usable Hard Drive Capacity
    1418.15 Gigabytes Hard Drive Free Space
    Keyboard
    Logitech wireless
    Mouse
    M 185 wireless
    Internet Speed
    12 ms Jitter 8 ms Download 10.5 Mbps Upload 1.7
    Browser
    Edge & FF
    Antivirus
    Windows Defender
I signed out of my TV account and see this message

1680879160112.png

Maybe you should get a free account????
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 24H2 26100.2894
    Computer type
    Laptop
    Manufacturer/Model
    Acer Swift SF114-34
    CPU
    Pentium Silver N6000 1.10GHz
    Memory
    4GB
    Screen Resolution
    1920 x 1080
    Hard Drives
    SSD
    Cooling
    fanless
    Internet Speed
    150 Mbps
    Browser
    Brave
    Antivirus
    Webroot Secure Anywhere
    Other Info
    System 3

    ASUS T100TA Transformer
    Processor Intel Atom Z3740 @ 1.33GHz
    Installed RAM 2.00 GB (1.89 GB usable)
    System type 32-bit operating system, x64-based processor

    Edition Windows 10 Home
    Version 22H2 build 19045.3570
  • Operating System
    Windows 11 Pro 23H2 22631.2506
    Computer type
    Laptop
    Manufacturer/Model
    HP Mini 210-1090NR PC (bought in late 2009!)
    CPU
    Atom N450 1.66GHz
    Memory
    2GB
    Browser
    Brave
    Antivirus
    Webroot
But i use Quick Assist now & it works great, just that it will kick you off when you ask the user to reboot the machine, but i think that would happen no matter what program i use !
Teamviewer can be set up for unattended access.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 24H2 26100.2894
    Computer type
    Laptop
    Manufacturer/Model
    Acer Swift SF114-34
    CPU
    Pentium Silver N6000 1.10GHz
    Memory
    4GB
    Screen Resolution
    1920 x 1080
    Hard Drives
    SSD
    Cooling
    fanless
    Internet Speed
    150 Mbps
    Browser
    Brave
    Antivirus
    Webroot Secure Anywhere
    Other Info
    System 3

    ASUS T100TA Transformer
    Processor Intel Atom Z3740 @ 1.33GHz
    Installed RAM 2.00 GB (1.89 GB usable)
    System type 32-bit operating system, x64-based processor

    Edition Windows 10 Home
    Version 22H2 build 19045.3570
  • Operating System
    Windows 11 Pro 23H2 22631.2506
    Computer type
    Laptop
    Manufacturer/Model
    HP Mini 210-1090NR PC (bought in late 2009!)
    CPU
    Atom N450 1.66GHz
    Memory
    2GB
    Browser
    Brave
    Antivirus
    Webroot
Currently, I have been using TeamViewer to remotely connect to my grandmothers' computer when it needs fixing. Recently, my grandmother has been having trouble reading the code I need to put in my computer to remotely connect. I'm not sure if there is any software that can just be a simple authorization "Yes / No" instead of having to type a code that changes every so often. Remote connecting to her computer to fix things has been so beneficial, especially during the pandemic when we couldn't see each other often.
 

My Computer

System One

  • OS
    Windows 11 Pro
TeamViewer can be set for unattended access if you know her log in details. The only requirement is that she switches it on
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 24H2 26100.2894
    Computer type
    Laptop
    Manufacturer/Model
    Acer Swift SF114-34
    CPU
    Pentium Silver N6000 1.10GHz
    Memory
    4GB
    Screen Resolution
    1920 x 1080
    Hard Drives
    SSD
    Cooling
    fanless
    Internet Speed
    150 Mbps
    Browser
    Brave
    Antivirus
    Webroot Secure Anywhere
    Other Info
    System 3

    ASUS T100TA Transformer
    Processor Intel Atom Z3740 @ 1.33GHz
    Installed RAM 2.00 GB (1.89 GB usable)
    System type 32-bit operating system, x64-based processor

    Edition Windows 10 Home
    Version 22H2 build 19045.3570
  • Operating System
    Windows 11 Pro 23H2 22631.2506
    Computer type
    Laptop
    Manufacturer/Model
    HP Mini 210-1090NR PC (bought in late 2009!)
    CPU
    Atom N450 1.66GHz
    Memory
    2GB
    Browser
    Brave
    Antivirus
    Webroot

Latest Support Threads

Back
Top Bottom