Can't alter fuses on attiny but can flash firmware?

I followed some tutorials but got stuck on this. I need to change the fuses of my Attiny85, I am using AVRdude in cmd.
When I use this command:
Avrdude -c usbtiny -p attiny85 -U lfuse:w:0xe2:m -U hfuse:w:0xdf:m -U efuse:w:0xff:m

it says "Avrdude: Error: Could not find USBtiny device (0x1781/0xc9f)"

But when I type this command
avrdude -c avrisp -p attiny85 -P com3 -b 19200 -U flash:w:C://tvbgone.hex:i

it works, and flashes like normal. My guess is that it's because of the "com3" part of the code, I tried to alter the fuse code aswell, but I don't know how the syntax for these codes works and what I tried failed. So could anybody help me out here? :stuck_out_tongue:
(I use the arduino as ISP and everything there works fine, I can upload sketches and whatnot)

The option -c usbtiny tells avrdude that you are using an USBtinyISP programmer. Do you have one of those?
Since you are successful uploading sketches, I assume that you are using an Arduino as ISP.

If that is the case, do this:

avrdude -c avrisp -p attiny85 -P com3 -b 19200 -U lfuse:w:0xe2:m -U hfuse:w:0xdf:m -U efuse:w:0xff:m