Category Archives: Internet

How to force an Intune Win32 app to redeploy?

Under HKLM:\Software\Microsoft\IntuneManagementExtension\Win32Apps\ there is a GUID that represents every user that has been evaluated on the machine, and under each user is the GUID for the application. Delete either the GUID for the app (Which can be easily determined as it is part of the URL when viewing the application in intune) or delete youe user GUID (or all if unsure) and then restart the management service.

All apps will re evaluate , and your install counters will be reset ?.

Create private network using proxmox on ovh

On your proxmox server edit /etc/interfaces and add a vmbr1 interface like so

load kernel module dummy. modprobe dummy

auto lo
iface lo inet loopback

auto vmbr0
iface vmbr0 inet static
        address  167.114.101.88
        netmask  255.255.255.0
        gateway  167.114.101.254
        broadcast  167.114.101.255
        network 167.114.101.0
        bridge_ports eth0
        bridge_stp off
        bridge_fd 0


# Internal Network
auto vmbr1
iface vmbr1 inet static
    address 10.0.1.1/23
    bridge_ports dummy0
    bridge_stp off
    bridge_fd 0
    post-up /sbin/iptables -t nat -A POSTROUTING -o vmbr0 -j MASQUERADE
    pre-down /sbin/iptables -t nat -D POSTROUTING -o vmbr0 -j MASQUERADE

Bring up the new vmbr1 interface

ifdown vmbr1 && ifup vmbr1

Then enable ip forwarding in /etc/sysctl.conf

net.ipv4.ip_forward=1

Load the new values

sysctl -p /etc/sysctl.conf

On your vm configure networking like so

auto eth0
iface eth0 inet static
	address 10.0.1.100
	netmask 255.255.254.0
	gateway 10.0.1.1

Keep free heroku dynos up forever

app.set('port', (process.env.PORT || 5000));

//For avoidong Heroku $PORT error
app.get('/', function(request, response) {
    var result = 'App is running'
    response.send(result);
}).listen(app.get('port'), function() {
    console.log('App is running, server is listening on port ', app.get('port'));
});

if(process.env.url){
    http.get(process.env.url);
}


setInterval(function(){
    http.get(process.env.url);
}, 300000)

How to get Google File Stream to run on a Server OS

  • Run Drive File Stream install on the Win10 x64
  • Copy files from C:\Program Files\Google\ to the new WinServer system
  • Copy registry entries HKLM\SOFTWARE\Google\DriveFS to the new system
  • Install driver by clicking Install on C:\Program Files\Google\Drive File Stream\Drivers\[version]\googledrivefs[version].inf
  • Register DLL in cmd: regsvr32 “C:\Program Files\Google\Drive File Stream\[version]\drivefsext.dll”
  • Reboot
  • Run C:\Program Files\Google\Drive File Stream\[version]\GoogleDriveFS.exe and sign-in