I have now plugged the USBasp in my brother's Win8 gaming PC and it seems like the drivers installed without any problems, although i don't have any of my code nor programming software in it, and without knowing the password i can't really do anything about it.
Good to know that it works.
Edit: After about a hour of fidling around it seems like i finally installed the drivers in my laptop. The biggest problem right now is setting external tools on atmel studio.
Glad to hear you got it working.
But can you say more about the fiddling? Even some hints at what you think may have been the problem (and what was different on your brothers PC) may help someone else, even if you're not quite sure.
Downlading the driver, unzipping it, going to device manager, setting drivers manually and after some tries is seemed to work.
And after a couple more hours i've worked out something with setting the external device on AtmelStudio 6.
But i've come to one more problem along the way.
After compiling when i click on the programmer ( In atmel studio6 ) the "R" led ( on USBasp ) emmits light for about a second, and a DOS/command prompt window opens and closes after about a second too. But nothing else really happens, the chip doesn't get programmed.
Also when i i go to command prompt and type in "avrdude -help" it tells me that there's no such internal or external device like avrdude.
Just some more info.
My command: D:\AVRDude 5,11\avrdude-5.11-Patch7610-win32\avrdude.exe
My arguments: -c usbasp -p attiny45 -B12 -U flash:w:”$(ProjectDir)Debug\$(ItemFileName).hex”:i
Also my program:
#define F_CPU 1000000UL
#include <avr/io.h>
#include <util/delay.h>
int main(void)
{ DDRB |= 0b00001000;
while(1)
{
PORTB ^= 0b00001000;
_delay_ms(100);
}
}