Quantcast
Channel: VMware Communities : Discussion List - VMware View
Viewing all 10683 articles
Browse latest View live

USB Headset - microphone not working

$
0
0

We´re currently running horizon client under Dell Optiplex 3XXX series, the headset in use is Jabra Biz 2300 USB and there more than 900 users using this technology.

 

The context is, users are making calls on this environment and during the day they are experiencing issues with the microphone that is not working, in order to fix this, we either restart the drivers in Windows within Dizzion or reconnect to the horizon client itself. The instructions that users are following is selecting the prefered microphone driver and while connected to the client are enabling the options Automatically Connect at Startup and Automatically Connect when Inserted.

 

Please let me know if we need to follow up any other recommended steps in order to fix it.

Regards


8.0.5 iPad External Mouse Not Working

$
0
0

The 8.0.5 iOS Horizon Client update ostensibly adds support for ”any external mouse” for iPadOS 13.4, which I presume also means the Magic Keyboard Trackpad. However, while you can click on items on a desktop, the cursor disappears on the screen.

 

It seems like the mouse support is not functioning correctly.

Fully automatic QR-code generator for 2-Factor Authentication in Horizon View

$
0
0

We are using the 2-Factor Authentication from Google in Horizon View for all our external Horizon users. Therefore we have setup a CentOS VM with the Google Authenticator package installed. The Guide for this can be found here: https://blogs.vmware.com/consulting/files/2015/02/VMW_15Q1_TD_Horizon-View-Google-Authenticator_021715_FINAL_EMonjoin.pdf

 

Because Sysadmins are a bit lazy and we also do not want to generate every QR-code by hand for all our Users, we have come up with this fully automated Linux script.

A cronjob runs this script every 5 minutes. If a new user and HomeDir is created, the script automaticly creates the QR-code for this user and places a textfile with the URL for the QR-code in the Users Homedir. It works like a charm and saves us a lot of time.

 

  Feel free to use this script in your own environment, but please leave the header info as it is

 

 

#!/bin/bash


# This script is created by John at RTV-Noord. You may use and distribute
# it as long as you keep this header as it is. 
#
# THE USAGE OF THIS SCRIPT IS AT YOUR OWN RISK!
#
# There are some prerequisites to make this script work:
# - machine you run it from is a Active Directory Domain member
# - the share with AD homedirs is mounted on /mnt/home
# - the google-authenticator package is installed
# - replace domainname.com with your AD domainname


ls /mnt/home > all_users
MAKEQR=$(comm -3 all_users users_with_qr | wc -l)


if [ $MAKEQR -gt 0 ]; then
    echo "Found users without QR."    comm -3 all_users users_with_qr > users_without_qr    for user in $(cat users_without_qr); do        echo "    $(date) make qr for $user..."        su -l "$user@domainname.com" -c "google-authenticator -tdf -r 3 -R 30 -w 17 -Q UTF8 | grep http > google-authenticator.txt"        mv /home/$user@domainname.com/google-authenticator.txt /mnt/home/$user/    done    cat all_users > users_with_qr    rm users_without_qr    echo    echo "$MAKEQR QR-code has been created"
fi
Viewing all 10683 articles
Browse latest View live