• I tried this

    SELECT '--Shows avail free DB space ' as ' '

    exec sp_MSForEachDB 'Use ? SELECT name AS ''Name of File'', size/128.0 -CAST(FILEPROPERTY(name, ''SpaceUsed'' )

    AS int)/128.0 AS ''Available Space In MB'' FROM sysfiles'

    Gave me the following output

    (1 row(s) affected)

    Msg 2812, Level 16, State 62, Line 2

    Could not find stored procedure 'sp_MSForEachDB'.

    Results was only

    --Shows avail free DB space

    Is the installation missing the procedure ?