diff --git a/commands/utility/stats.js b/commands/utility/stats.js
index dc34d9c..eed7106 100644
--- a/commands/utility/stats.js
+++ b/commands/utility/stats.js
@@ -47,7 +47,7 @@ class StatsCommand extends Command {
 			cpu = stdout;
 		} else if (process.platform == 'win32') {
 			const { stdout } = await exec('wmic CPU get NAME');
-			cpu = stdout;
+			cpu = stdout.replace('Name', '');
 		}
 
 		const statsEmbed = new MessageEmbed()