a bit of a late answer: it is possible to host a shiny app on Windows.
use the following run.R script below, start it as a job on the windows machine.
Do make sure that the port (below 1234) is open in the local firewall.
Enjoy!
require(shiny)
folder_address = 'H:/path to app'
x <- system("ipconfig", intern=TRUE)
z <- x[grep("IPv4", x)]
ip <- gsub(".*? ([[:digit:]])", "\1", z)
print(paste0("the Shiny Web application runs on: http://", ip, ":1234/"))
runApp(folder_address, launch.browser=FALSE, port = 1234, host = ip)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…