Heres a way with AHK. Just run the script from the directory or location you want the folders to be created.
Loop, 150
FileCreateDir, %A_Index%
ExitApp
If you want to use a batch file you can use this. Of course change the path as needed.
for /l %%i in (1,1,150) do mkdir "C:\Test\%%i"