Discord 1 0 9001
Author: g | 2025-04-25
client not defined in discord bot module. 0. Discord.JS bot does not respond. 1. Discord Bot Presence. 0. Node . not working while making a discord bot. 1. Nodejs discord client not defined in discord bot module. 0. Discord.JS bot does not respond. 1. Discord Bot Presence. 0. Node . not working while making a discord bot. 1. Nodejs discord bot. 0. Discord bot not responding made using discord.js module. Hot Network Questions Tips for
Free discord .0 Download - discord .0 for
Use this to test port 9001 on IP address 10.20.30.40:nc -z -v -u 10.20.30.40 9001When the connection is successful, the screen output is:Connection to 10.20.30.40 9001 port [udp/*] succeeded!TCPTo use netcat for checking a TCP connection, you can use this to test port 9001 on IP address 10.20.30.40:nc -z -v 10.20.30.40 9001When the connection is successful, the screen output is:Connection to 192.168.168.121 9001 port [tcp/*] succeeded!WindowsUDPTo use PortQry.exe for checking a UDP connection, you can use this to test port 9001 on IP address 10.20.30.40:portqry -n 10.20.30.40 -e 9001 -p UDPWhen the connection is successful, the screen output is:UDP port 9001 (unknown service): LISTENING or FILTEREDIn the PowerShell session, you can also see if the connection was successful. It will show you a PortQry Test Message:10.20.30.40:61199 PortQry Test MessageTCPTo use PortQry.exe for checking a TCP connection, you can use this to test port 9001 on IP address 10.20.30.40:portqry -n 10.20.30.40 -e 9001 -p TCPWhen the connection is successful, the screen output is:TCP port 9001 (unknown service): LISTENING The scriptBelow is the script. You can save it on the system you want to start a TCP or UDP listener.function New-Portlistener { [CmdletBinding(DefaultParameterSetName = 'All')] param ( [parameter(Mandatory = $false, HelpMessage = "Enter the tcp port you want to use to listen on, for example 3389", parameterSetName = "TCP")] [ValidatePattern('^[0-9]+$')] [ValidateRange(0, 65535)] [int]$TCPPort, [parameter(Mandatory = $false, HelpMessage = "Enter the udp port you want to use to listen on, for example 3389", parameterSetName = "UDP")] [ValidatePattern('^[0-9]+$')] [ValidateRange(0, 65535)] [int]$UDPPort ) #Test if TCP port is already listening port before starting listener if ($TCPPort) { $Global:ProgressPreference = 'SilentlyContinue' #Hide GUI output $testtcpport = Test-NetConnection -ComputerName localhost -Port $TCPPort -WarningAction SilentlyContinue -ErrorAction Stop if ($testtcpport.TcpTestSucceeded -ne $True) { Write-Host ("TCP port {0} is available, continuing..." -f $TCPPort) -ForegroundColor Green } else { Write-Warning ("TCP Port {0} is already listening, aborting..." -f $TCPPort) return } #Start TCP Server #Used procedure from $ipendpoint = new-object System.Net.IPEndPoint([ipaddress]::any, $TCPPort) $listener = new-object System.Net.Sockets.TcpListener $ipendpoint $listener.start() Write-Host ("Now listening on TCP port {0}, press Escape to stop listening" -f $TCPPort) -ForegroundColor Green while ( $true ) { if ($host.ui.RawUi.KeyAvailable) client not defined in discord bot module. 0. Discord.JS bot does not respond. 1. Discord Bot Presence. 0. Node . not working while making a discord bot. 1. Nodejs discord client not defined in discord bot module. 0. Discord.JS bot does not respond. 1. Discord Bot Presence. 0. Node . not working while making a discord bot. 1. Nodejs discord bot. 0. Discord bot not responding made using discord.js module. Hot Network Questions Tips for January 19, 2025, 5:23pm 1 AboutLyrion Music Server (aka. LMS, fka. Logitech Mediaserver, SlimServer, SqueezeCenter, SqueezeboxServer, SliMP3) is the server software that powers audio players from Logitech (formerly known as SlimDevices), including Squeezebox 3rd Generation, Squeezebox Boom, Squeezebox Receiver, Transporter, Squeezebox2, Squeezebox and SLIMP3, and many software emulators like Squeezelite and SqueezePlay.With the help of many plugins, Lyrion Music Server can stream not only your local music collection, but content from many music services and internet radio stations to your players.Lyrion Music Server is written in Perl. It runs on pretty much any platform that Perl runs on, including Linux, Mac OSX, Solaris and Windows.Enjoy the music on your Squeezebox! GitHub - LMS-Community/slimserver: Server for Squeezebox and compatible players. This server is also called Lyrion Music Server.App StorePull RequestDocumentationJust install it and use it for legally obtained content. I’m guessing you got it figured out? no. I didn’t think I should post here on “this” post so I posted in discord You’re going to the 9000 port? What is Dozzle saying? I just installed it, and it did work, so I would need more info.Also when you change the host port you also need to change it in the Web UI Port. I changed the port to 9001 because 9000 was in use, and that pastebin is what Dozzle said. And what do you mean by the Web UI port Make sure you change the Web UI port to 9001. oh that port. I thought you were saying the CasaOSComments
Use this to test port 9001 on IP address 10.20.30.40:nc -z -v -u 10.20.30.40 9001When the connection is successful, the screen output is:Connection to 10.20.30.40 9001 port [udp/*] succeeded!TCPTo use netcat for checking a TCP connection, you can use this to test port 9001 on IP address 10.20.30.40:nc -z -v 10.20.30.40 9001When the connection is successful, the screen output is:Connection to 192.168.168.121 9001 port [tcp/*] succeeded!WindowsUDPTo use PortQry.exe for checking a UDP connection, you can use this to test port 9001 on IP address 10.20.30.40:portqry -n 10.20.30.40 -e 9001 -p UDPWhen the connection is successful, the screen output is:UDP port 9001 (unknown service): LISTENING or FILTEREDIn the PowerShell session, you can also see if the connection was successful. It will show you a PortQry Test Message:10.20.30.40:61199 PortQry Test MessageTCPTo use PortQry.exe for checking a TCP connection, you can use this to test port 9001 on IP address 10.20.30.40:portqry -n 10.20.30.40 -e 9001 -p TCPWhen the connection is successful, the screen output is:TCP port 9001 (unknown service): LISTENING The scriptBelow is the script. You can save it on the system you want to start a TCP or UDP listener.function New-Portlistener { [CmdletBinding(DefaultParameterSetName = 'All')] param ( [parameter(Mandatory = $false, HelpMessage = "Enter the tcp port you want to use to listen on, for example 3389", parameterSetName = "TCP")] [ValidatePattern('^[0-9]+$')] [ValidateRange(0, 65535)] [int]$TCPPort, [parameter(Mandatory = $false, HelpMessage = "Enter the udp port you want to use to listen on, for example 3389", parameterSetName = "UDP")] [ValidatePattern('^[0-9]+$')] [ValidateRange(0, 65535)] [int]$UDPPort ) #Test if TCP port is already listening port before starting listener if ($TCPPort) { $Global:ProgressPreference = 'SilentlyContinue' #Hide GUI output $testtcpport = Test-NetConnection -ComputerName localhost -Port $TCPPort -WarningAction SilentlyContinue -ErrorAction Stop if ($testtcpport.TcpTestSucceeded -ne $True) { Write-Host ("TCP port {0} is available, continuing..." -f $TCPPort) -ForegroundColor Green } else { Write-Warning ("TCP Port {0} is already listening, aborting..." -f $TCPPort) return } #Start TCP Server #Used procedure from $ipendpoint = new-object System.Net.IPEndPoint([ipaddress]::any, $TCPPort) $listener = new-object System.Net.Sockets.TcpListener $ipendpoint $listener.start() Write-Host ("Now listening on TCP port {0}, press Escape to stop listening" -f $TCPPort) -ForegroundColor Green while ( $true ) { if ($host.ui.RawUi.KeyAvailable)
2025-03-27January 19, 2025, 5:23pm 1 AboutLyrion Music Server (aka. LMS, fka. Logitech Mediaserver, SlimServer, SqueezeCenter, SqueezeboxServer, SliMP3) is the server software that powers audio players from Logitech (formerly known as SlimDevices), including Squeezebox 3rd Generation, Squeezebox Boom, Squeezebox Receiver, Transporter, Squeezebox2, Squeezebox and SLIMP3, and many software emulators like Squeezelite and SqueezePlay.With the help of many plugins, Lyrion Music Server can stream not only your local music collection, but content from many music services and internet radio stations to your players.Lyrion Music Server is written in Perl. It runs on pretty much any platform that Perl runs on, including Linux, Mac OSX, Solaris and Windows.Enjoy the music on your Squeezebox! GitHub - LMS-Community/slimserver: Server for Squeezebox and compatible players. This server is also called Lyrion Music Server.App StorePull RequestDocumentationJust install it and use it for legally obtained content. I’m guessing you got it figured out? no. I didn’t think I should post here on “this” post so I posted in discord You’re going to the 9000 port? What is Dozzle saying? I just installed it, and it did work, so I would need more info.Also when you change the host port you also need to change it in the Web UI Port. I changed the port to 9001 because 9000 was in use, and that pastebin is what Dozzle said. And what do you mean by the Web UI port Make sure you change the Web UI port to 9001. oh that port. I thought you were saying the CasaOS
2025-04-048472> 2018-12-18 17:22:34> Program: Starting Squirrel Updater: --install .8472> 2018-12-18 17:22:34> Program: Starting install, writing to C:\Users\Magnus\AppData\Local\SquirrelTemp8472> 2018-12-18 17:22:34> Program: About to install to: C:\Users\Magnus\AppData\Local\Discord8472> 2018-12-18 17:22:34> SingleGlobalInstance: Grabbing lockfile with timeout of 00:00:108472> 2018-12-18 17:22:34> CheckForUpdateImpl: Reading RELEASES file from C:\Users\Magnus\AppData\Local\SquirrelTemp8472> 2018-12-18 17:22:34> CheckForUpdateImpl: Remote version 0.0.301 differs from local 8472> 2018-12-18 17:22:34> CheckForUpdateImpl: First run or local directory is corrupt, starting from scratch8472> 2018-12-18 17:22:34> ApplyReleasesImpl: Writing files to app directory: C:\Users\Magnus\AppData\Local\Discord\app-0.0.3018472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-console-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-console-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-debug-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-debug-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-datetime-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-datetime-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-errorhandling-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-errorhandling-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-file-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-file-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-file-l1-2-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-file-l1-2-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-file-l2-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-file-l2-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-handle-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-handle-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-heap-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-heap-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-interlocked-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-interlocked-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-localization-l1-2-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-localization-l1-2-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-namedpipe-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-namedpipe-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-libraryloader-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-libraryloader-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-memory-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-memory-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-processenvironment-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-processenvironment-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-processthreads-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-processthreads-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-profile-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-profile-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-rtlsupport-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-rtlsupport-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-synch-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-synch-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-sysinfo-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-sysinfo-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-processthreads-l1-1-1.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-processthreads-l1-1-1.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-timezone-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-timezone-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-conio-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-conio-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-synch-l1-2-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-synch-l1-2-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-string-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-string-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-core-util-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-core-util-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-convert-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-convert-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-filesystem-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-filesystem-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-locale-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-locale-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-multibyte-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-multibyte-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-environment-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-environment-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-heap-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-heap-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-private-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-private-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-math-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-math-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-stdio-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-stdio-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-time-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-time-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-process-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-process-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\content_resources_200_percent.pak to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\content_resources_200_percent.pak8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-string-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-string-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-utility-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-utility-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\content_shell.pak to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\content_shell.pak8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\ffmpeg.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\ffmpeg.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\api-ms-win-crt-runtime-l1-1-0.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\api-ms-win-crt-runtime-l1-1-0.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\app.ico to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\app.ico8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\d3dcompiler_47.dll to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\d3dcompiler_47.dll8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\icudtl.dat to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\icudtl.dat8472> 2018-12-18 17:22:37> ApplyReleasesImpl: Moving file C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\lib\net45\blink_image_resources_200_percent.pak to C:\Users\Magnus\AppData\Local\Discord\app-0.0.301\blink_image_resources_200_percent.pak8472>
2025-04-11